Commit b9a12ad3 authored by Richard Cohen's avatar Richard Cohen Committed by Alexandre Julliard

Remove . from default library search path.

parent 200675f9
......@@ -229,9 +229,8 @@ static char *open_library( const char *name )
{
if ((fullname = try_library_path( lib_path[i], name ))) return fullname;
}
if (!(fullname = try_library_path( ".", name )))
fatal_error( "could not open .def file for %s\n", name );
return fullname;
fatal_error( "could not open .def file for %s\n", name );
return NULL;
}
/* read in the list of exported symbols of an import library */
......
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