* shortcut.c: Change symlink condition.
This commit is contained in:
parent
c350452a41
commit
80ed95f2eb
@ -1,3 +1,7 @@
|
|||||||
|
Sun Feb 25 10:18:00 2001 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* shortcut.c: Change symlink condition.
|
||||||
|
|
||||||
Fri Feb 23 10:42:00 2001 Corinna Vinschen <corinna@vinschen.de>
|
Fri Feb 23 10:42:00 2001 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* mmap.cc (fhandler_disk_file::mmap): Use `addr' correctly.
|
* mmap.cc (fhandler_disk_file::mmap): Use `addr' correctly.
|
||||||
|
@ -15,6 +15,7 @@ details. */
|
|||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/mount.h>
|
#include <sys/mount.h>
|
||||||
|
#include <sys/strace.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include "shortcut.h"
|
#include "shortcut.h"
|
||||||
|
|
||||||
@ -125,9 +126,9 @@ check_shortcut (const char *path, DWORD fileattr, HANDLE h,
|
|||||||
if (FAILED(hres))
|
if (FAILED(hres))
|
||||||
goto close_it;
|
goto close_it;
|
||||||
}
|
}
|
||||||
/* It's a symlink. */
|
|
||||||
*pflags = PATH_SYMLINK;
|
|
||||||
res = strlen (contents);
|
res = strlen (contents);
|
||||||
|
if (res) /* It's a symlink. */
|
||||||
|
*pflags = PATH_SYMLINK;
|
||||||
|
|
||||||
close_it:
|
close_it:
|
||||||
/* Release the pointer to IPersistFile. */
|
/* Release the pointer to IPersistFile. */
|
||||||
|
Loading…
Reference in New Issue
Block a user