mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
path: nasm_catfile -- Fix incorrect return of filename only
nasm_catfile returns an incorrect (already incremented) pointer. https://bugzilla.nasm.us/show_bug.cgi?id=3392205 Signed-off-by: night199uk <night199uk@hermitcrabslab.com> Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
28b69e2a63
commit
e1bd3bc7b4
@ -164,7 +164,7 @@ char *nasm_catfile(const char *dir, const char *file)
|
||||
#else
|
||||
size_t dl = strlen(dir);
|
||||
size_t fl = strlen(file);
|
||||
char *p;
|
||||
char *p, *pp;
|
||||
bool dosep = true;
|
||||
|
||||
if (!dl || ismatch(separators, dir[dl-1])) {
|
||||
@ -172,14 +172,14 @@ char *nasm_catfile(const char *dir, const char *file)
|
||||
dosep = false;
|
||||
}
|
||||
|
||||
p = nasm_malloc(dl + fl + dosep + 1);
|
||||
p = pp = nasm_malloc(dl + fl + dosep + 1);
|
||||
|
||||
memcpy(p, dir, dl);
|
||||
p += dl;
|
||||
memcpy(pp, dir, dl);
|
||||
pp += dl;
|
||||
if (dosep)
|
||||
*p++ = catsep;
|
||||
*pp++ = catsep;
|
||||
|
||||
memcpy(p, file, fl+1);
|
||||
memcpy(pp, file, fl+1);
|
||||
|
||||
return p;
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user