Skip to content
Snippets Groups Projects
Commit 2de61fb9 authored by Daniel Salzman's avatar Daniel Salzman Committed by Gerrit Code Review
Browse files

packet: fix memset boundary in packet creation

Change-Id: I9f34c66239ea58c0c4186535223099f874cc42c9
parent 12f50e13
No related branches found
No related tags found
No related merge requests found
......@@ -783,7 +783,7 @@ knot_packet_t *knot_packet_new_mm(knot_packet_prealloc_type_t prealloc, mm_ctx_t
pkt = (knot_packet_t *)mm->alloc(mm->ctx, size);
CHECK_ALLOC_LOG(pkt, NULL);
memset(pkt, 0, PREALLOC_PACKET);
memset(pkt, 0, size);
memcpy(&pkt->mm, mm, sizeof(mm_ctx_t));
if (init_pointers != NULL) {
init_pointers(pkt);
......
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