From 7bcc8667437044bd50852dd8978682644dbe73fd Mon Sep 17 00:00:00 2001 From: Jan Hutter Date: Mon, 7 Nov 2005 13:03:44 +0000 Subject: [PATCH] - fixed memory free error --- Source/charon/tests/socket_test.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Source/charon/tests/socket_test.c b/Source/charon/tests/socket_test.c index 98a1eb16d..4e761496b 100644 --- a/Source/charon/tests/socket_test.c +++ b/Source/charon/tests/socket_test.c @@ -38,7 +38,9 @@ void test_socket(tester_t *tester) packet_t *pkt = packet_create(AF_INET); char *test_string = "Testing functionality of socket_t"; - pkt->data.ptr = test_string; + + pkt->data.ptr = alloc_bytes(strlen(test_string),"test_string"); + memcpy(pkt->data.ptr,test_string,strlen(test_string)); pkt->data.len = strlen(test_string); /* send to previously bound socket */