Commit 1526872b authored by François Gouget's avatar François Gouget Committed by Alexandre Julliard

FALSE is not defined on Solaris.

parent 69f8b8f6
......@@ -426,11 +426,11 @@ static int solaris_try_mmap (void *addr, size_t len, int prot, int flags,
and MAP_FIXED isn't already specified. */
if ( !addr )
return FALSE;
return 0;
if ( (uintptr_t)addr & (pagesize-1) )
return FALSE;
return 0;
if ( flags & MAP_FIXED )
return FALSE;
return 0;
/* We use vfork() to freeze all threads of the
current process. This allows us to check without
......
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