Skip to content
Snippets Groups Projects
Commit bf5ecff6 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Plug addtional realBase memory leaks.

parent ff447a31
No related branches found
No related tags found
No related merge requests found
......@@ -237,6 +237,10 @@ ldbm_back_search(
nrefs > 0 ? rbuf : NULL, nentries );
idl_free( candidates );
free( rbuf );
if( realBase != NULL) {
free( realBase );
}
return( 0 );
}
......@@ -266,6 +270,10 @@ ldbm_back_search(
cache_return_entry_r( &li->li_cache, e );
idl_free( candidates );
free( rbuf );
if( realBase != NULL) {
free( realBase );
}
return( 0 );
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment