소스 검색

Remove xdirname()

dirname(3) should be shot to death.
master
sin 10 년 전
부모
커밋
577e0284a1
1개의 변경된 파일1개의 추가작업 그리고 15개의 파일을 삭제
  1. +1
    -15
      noice.c

+ 1
- 15
noice.c 파일 보기

@@ -118,20 +118,6 @@ xrealpath(const char *path)
return p;
}

char *
xdirname(const char *path)
{
char *p, *tmp;

/* Some implementations of dirname(3) may modify `path' */
tmp = xstrdup(path);
p = dirname(tmp);
free(tmp);
if (p == NULL)
printerr(1, "dirname");
return p;
}

void
spawn(const char *file, const char *arg)
{
@@ -546,7 +532,7 @@ nochange:
if (strcmp(path, "/") == 0) {
goto nochange;
} else {
dir = xdirname(path);
dir = dirname(path);
tmp = xmalloc(strlen(dir) + 1);
strlcpy(tmp, dir, strlen(dir) + 1);
free(path);


불러오는 중...
취소
저장