[miniupnpc] Fix build on Debian Bullseye

This commit is contained in:
Andrey Volk 2022-01-04 18:51:16 +03:00
parent 5b38db4fa6
commit b1ab1cf276
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ NameValueParserGetData(void * d, const char * datas, int l)
nv = malloc(sizeof(struct NameValue));
if(l>63)
l = 63;
strncpy(nv->name, data->curelt, 64);
memcpy(nv->name, data->curelt, 64);
nv->name[63] = '\0';
memcpy(nv->value, datas, l);
nv->value[l] = '\0';