Merge "Fix memory-leak on soinfo_free()"

This commit is contained in:
Dmitriy Ivanov 2015-07-09 23:32:18 +00:00 committed by Gerrit Code Review
commit 880a293390

View File

@ -285,6 +285,7 @@ static void soinfo_free(soinfo* si) {
sonext = prev; sonext = prev;
} }
si->~soinfo();
g_soinfo_allocator.free(si); g_soinfo_allocator.free(si);
} }