Commit 548e1893 authored by Alexandre Julliard's avatar Alexandre Julliard

server: Don't return a value from a void function.

parent 68f2db29
......@@ -180,7 +180,7 @@ void get_selector_entry( struct thread *thread, int entry, unsigned int *base,
if (!pos)
{
set_error( STATUS_ACCESS_DENIED );
return 0;
return;
}
if ((fd = open_proc_as( thread->process, O_RDONLY )) == -1) return;
......
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