Introduce sstrndup wrapper.
This commit is contained in:
@ -23,7 +23,7 @@ char *resolve_tilde(const char *path) {
|
||||
char *head, *tail, *result;
|
||||
|
||||
tail = strchr(path, '/');
|
||||
head = strndup(path, tail ? (size_t)(tail - path) : strlen(path));
|
||||
head = sstrndup(path, tail ? (size_t)(tail - path) : strlen(path));
|
||||
|
||||
int res = glob(head, GLOB_TILDE, NULL, &globbuf);
|
||||
free(head);
|
||||
|
Reference in New Issue
Block a user