Fix memory-leak on soinfo_free()

Bug: http://b/22290728
Change-Id: I00747056db2cd3ff8b33936278464daed7236536
This commit is contained in:
Dmitriy Ivanov 2015-07-08 15:26:46 -07:00
parent c6f25641eb
commit 609f11b31e

View File

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