* Most modules were never unloaded due to a bug in put_module().

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27133 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2008-08-22 08:35:22 +00:00
parent 0fce483f9c
commit 29336cb02b
+3 -3
View File
@@ -2104,8 +2104,7 @@ get_module(const char* path, module_info** _info)
status = B_OK;
if (status == B_OK) {
if (module->ref_count < 0)
panic("argl %s", path);
ASSERT(module->ref_count >= 0);
module->ref_count++;
*_info = module->info;
} else if ((module->flags & B_BUILT_IN_MODULE) == 0
@@ -2138,7 +2137,8 @@ put_module(const char* path)
if ((module->flags & B_KEEP_LOADED) == 0) {
if (--module->ref_count == 0)
uninit_module(module);
} else if ((module->flags & B_BUILT_IN_MODULE) == 0)
}
if ((module->flags & B_BUILT_IN_MODULE) == 0)
put_module_image(module->module_image);
return B_OK;