Free obj->priv field in obj_free functions. This field is NULL

on all architectures except ia64, which uses it to keep function
description table.
This commit is contained in:
Alexander Kabaev 2003-03-14 21:11:28 +00:00
parent e0a6103d7d
commit 63c1e7cb8d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=112244

View File

@ -299,6 +299,7 @@ obj_free(Obj_Entry *obj)
STAILQ_REMOVE_HEAD(&obj->dagmembers, link);
free(elm);
}
free(obj->priv);
free(obj);
}