Kaydet (Commit) 76fb6275 authored tarafından Julien Nabet's avatar Julien Nabet

coverity#983056: Resource leak

Change-Id: Ic40776f3cec5139e7f7accb4985533e78bd7c158
üst 429adbbe
......@@ -68,6 +68,7 @@ static void * load(void * address, char const * symbol) {
}
func = dlsym(h, symbol);
if (func == NULL) {
dlclose(h);
abort();
}
return func;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment