Commit 5acb979f authored by Alexandre Julliard's avatar Alexandre Julliard

Make sure builtin dlls are never freed since we don't support dlclose

properly yet.
parent 691171b8
......@@ -301,6 +301,8 @@ WINE_MODREF *BUILTIN32_LoadLibraryExA(LPCSTR path, DWORD flags)
SetLastError( ERROR_OUTOFMEMORY );
return NULL;
}
wm->refCount++; /* we don't support freeing builtin dlls (FIXME)*/
return wm;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment