- fixed memory free error

This commit is contained in:
Jan Hutter 2005-11-07 13:03:44 +00:00
parent da6f775610
commit 7bcc866743
1 changed files with 3 additions and 1 deletions

View File

@ -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 */