commit | 5bd513640b52b62f379f2d15dc49cffbb899d191 | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Fri Jan 12 14:42:43 2007 +0100 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri Jan 12 14:42:43 2007 +0100 |
tree | e13413c7e84a48f930c96251e313386e248c1513 | |
parent | c255bf4676ac039b0718466c503f1f0064610742 [diff] [blame] |
ntdll: Moved the check for removable file in load_dll to the server.
diff --git a/server/process.c b/server/process.c index 001afcb..1c53f49 100644 --- a/server/process.c +++ b/server/process.c
@@ -492,7 +492,7 @@ free( dll ); return NULL; } - if (file) dll->file = (struct file *)grab_object( file ); + if (file) dll->file = grab_file_unless_removable( file ); list_add_tail( &process->dlls, &dll->entry ); } return dll;