Fixed accidental NULLing of natives in the native name cache but not filled.

This commit is contained in:
David Anderson 2008-10-31 22:35:27 -07:00
parent b3b972caf7
commit e70fc299ac

View File

@ -457,7 +457,6 @@ NativeEntry *ShareSystem::AddNativeToCache(CNativeOwner *pOwner, const sp_native
pEntry->owner = pOwner;
pEntry->func = ntv->func;
pEntry->name = ntv->name;
pEntry->func = NULL;
return pEntry;
}