mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
Fixed path resolution for a/b.c source files.
This commit is contained in:
parent
956c847f49
commit
d848c251b1
@ -207,6 +207,21 @@ static FILE *open_include_file( INCL_FILE *pFile )
|
||||
}
|
||||
free( filename );
|
||||
}
|
||||
/* try in src file directory */
|
||||
if (!file)
|
||||
{
|
||||
char *p = strrchr(pFile->included_by->name, '/');
|
||||
if (p)
|
||||
{
|
||||
int l = p - pFile->included_by->name + 1;
|
||||
char *filename = xmalloc(l + strlen(pFile->name) + 1);
|
||||
memcpy( filename, pFile->included_by->name, l );
|
||||
strcpy( filename + l, pFile->name );
|
||||
if ((file = fopen( filename, "r" ))) pFile->filename = filename;
|
||||
else free( filename );
|
||||
}
|
||||
}
|
||||
|
||||
if (!file)
|
||||
{
|
||||
if (firstPath) perror( pFile->name );
|
||||
|
Loading…
Reference in New Issue
Block a user