Skip to content
Snippets Groups Projects
Commit 1526872b authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard
Browse files

FALSE is not defined on Solaris.

parent 69f8b8f6
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment