Skip to content
Snippets Groups Projects
Commit b0fdc2c4 authored by Jan Kadlec's avatar Jan Kadlec
Browse files

Fixed cov: 10048

parent 255ed6c9
No related branches found
No related tags found
No related merge requests found
......@@ -519,8 +519,7 @@ char *rdata_hexlen_to_string(dnslib_rdata_item_t item)
char *rdata_nsap_to_string(dnslib_rdata_item_t item)
{
char *ret = malloc(sizeof(char) * (rdata_item_size(item) + 3));
strcat(ret, "0x");
/* TODO maybe assert? */
memcpy(ret, "0x", strlen("0x"));
strcat(ret, hex_to_string(rdata_item_data(item),
rdata_item_size(item)));
return ret;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment