Fixed selection issue.
This commit is contained in:
parent
e133871653
commit
8820fda592
5
bb.c
5
bb.c
@ -292,7 +292,10 @@ entry_t* load_entry(bb_t *bb, const char *path)
|
||||
if (!path || !path[0]) return NULL;
|
||||
if (lstat(path, &filestat) == -1) return NULL;
|
||||
char pbuf[PATH_MAX];
|
||||
sprintf(pbuf, "%s%s", bb->path, path);
|
||||
if (path[0] == '/')
|
||||
strcpy(pbuf, path);
|
||||
else
|
||||
sprintf(pbuf, "%s%s", bb->path, path);
|
||||
if (pbuf[strlen(pbuf)-1] == '/' && pbuf[1])
|
||||
pbuf[strlen(pbuf)-1] = '\0';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user