소스 검색

realpath allocates memory

master
Arun Prakash Jana 4 년 전
부모
커밋
0d7d0ca7db
No known key found for this signature in database GPG 키 ID: A75979F35C080412
1개의 변경된 파일5개의 추가작업 그리고 20개의 파일을 삭제
  1. +5
    -20
      src/nnn.c

+ 5
- 20
src/nnn.c 파일 보기

@@ -2926,12 +2926,10 @@ static bool parsekvpair(kv **arr, char **envcpy, const uchar id, ushort *items)
return FALSE;
}

if (nextkey - ptr > 1) {
--nextkey;
if (nextkey - ptr > 1)
/* Clear trailing ; or / */
if (*nextkey == ';' || (*nextkey == '/' && *(nextkey - 1) != ':'))
if (*--nextkey == ';')
*(*envcpy + (nextkey - ptr)) = '\0';
}

ptr = *envcpy;
nextkey = ptr;
@@ -2950,10 +2948,6 @@ static bool parsekvpair(kv **arr, char **envcpy, const uchar id, ushort *items)
}

if (*ptr == ';') {
/* Remove trailing space */
if (i > 0 && *(ptr - 1) == '/')
*(ptr - 1) = '\0';

*ptr = '\0';
nextkey = ptr + 1;
}
@@ -2996,20 +2990,11 @@ static char *get_kv_val(kv *kvarr, char *buf, int key, uchar max, bool path)
ssize_t len = strlen(home);
ssize_t loclen = strlen(kvarr[r].val);

if (!buf) {
buf = (char *)malloc(len + loclen);
if (!buf) {
DPRINTF_S(strerror(errno));
return NULL;
}
}

xstrlcpy(buf, home, len + 1);
xstrlcpy(buf + len, kvarr[r].val + 1, loclen);
return buf;
xstrlcpy(g_buf, home, len + 1);
xstrlcpy(g_buf + len, kvarr[r].val + 1, loclen);
}

return realpath(kvarr[r].val, buf);
return realpath(((kvarr[r].val[0] == '~') ? g_buf : kvarr[r].val), buf);
}
}



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