Fix memory-leak on soinfo_free()

Bug: http://b/22290728
Change-Id: I00747056db2cd3ff8b33936278464daed7236536
(cherry picked from commit 609f11b31e)
This commit is contained in:
Dmitriy Ivanov 2015-07-08 15:26:46 -07:00
parent 65dd858239
commit a5bb841df7

View file

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