Fixed selection issue.

This commit is contained in:
Bruce Hill 2020-02-23 18:05:40 -08:00
parent e133871653
commit 8820fda592

5
bb.c
View File

@ -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';