libluna+kernel: Get rid of nullcpy()
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
7649b44aab
commit
af0cb83a58
@ -23,10 +23,6 @@ extern "C"
|
||||
char* strdup(const char* str);
|
||||
char* strndup(const char* str, usize max);
|
||||
|
||||
// Copies len bytes from src into dest and adds a null terminator.
|
||||
// FIXME: Replace this invented function with strlcpy().
|
||||
void nullcpy(char* dest, const char* src, usize len);
|
||||
|
||||
usize strlcpy(char* dest, const char* src, usize len);
|
||||
|
||||
[[deprecated]] char* strcpy(char* dst, const char* src);
|
||||
|
@ -96,12 +96,6 @@ extern "C"
|
||||
return dest;
|
||||
}
|
||||
|
||||
void nullcpy(char* dest, const char* src, usize len)
|
||||
{
|
||||
memcpy(dest, src, len);
|
||||
dest[len] = 0;
|
||||
}
|
||||
|
||||
char* strcpy(char* dest, const char* src)
|
||||
{
|
||||
char* s = dest;
|
||||
|
@ -40,7 +40,7 @@ Result<TarStream::Entry> TarStream::parse_header(const TarStream::TarHeader* hdr
|
||||
Entry entry;
|
||||
|
||||
char size[13];
|
||||
nullcpy(size, hdr->size, 12);
|
||||
strlcpy(size, hdr->size, 13);
|
||||
entry.size = parse_unsigned_integer(size, nullptr, 8);
|
||||
|
||||
entry.mode = (mode_t)parse_unsigned_integer(hdr->mode, nullptr, 8);
|
||||
@ -56,7 +56,7 @@ Result<TarStream::Entry> TarStream::parse_header(const TarStream::TarHeader* hdr
|
||||
default: return err(EFIXME);
|
||||
}
|
||||
|
||||
if (!strlen(hdr->prefix)) { nullcpy(entry.name, hdr->name, 100); }
|
||||
if (!strlen(hdr->prefix)) { strlcpy(entry.name, hdr->name, 101); }
|
||||
else { return err(EFIXME); }
|
||||
|
||||
if (entry.size)
|
||||
|
Loading…
Reference in New Issue
Block a user