1
0
mirror of https://git.burble.com/burble.dn42/bird.git synced 2024-05-12 03:55:05 +00:00

Not calling memcpy with n=0.

This commit is contained in:
Maria Matejka
2019-08-14 10:28:23 +02:00
parent 124d860f64
commit d607205486
2 changed files with 10 additions and 1 deletions

View File

@ -72,6 +72,15 @@ bstrcmp(const char *s1, const char *s2)
return !s2 - !s1;
}
static inline void *
bmemcpy(void *dest, const void *src, size_t n)
{
if (n)
return memcpy(dest, src, n);
else
return dest;
}
#define ROUTER_ID_64_LENGTH 23
#endif