mirror of git://git.musl-libc.org/musl
fix get_current_dir_name behavior
This commit is contained in:
parent
61c2cf877b
commit
f96eb335e1
|
@ -2,11 +2,15 @@
|
|||
#include <string.h>
|
||||
#include <limits.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
char *get_current_dir_name(void) {
|
||||
struct stat a, b;
|
||||
char buf[PATH_MAX];
|
||||
char* res = getenv("PWD");
|
||||
if(res && *res) return strdup(res);
|
||||
char *res = getenv("PWD");
|
||||
if (res && *res && !stat(res, &a) && !stat(".", &b)
|
||||
&& (a.st_dev == b.st_dev) && (a.st_ino == b.st_ino))
|
||||
return strdup(res);
|
||||
if(!getcwd(buf, sizeof(buf))) return NULL;
|
||||
return strdup(buf);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue