X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=mem.c;fp=mem.c;h=5ba9090b08cd52b507b9cb77ca02865004481071;hb=8b4052ad6015aa9f54c9c824f28655f230d09d8d;hp=83ffa55375e5713477d4d68dacadf59a6d5e73e0;hpb=3eae5368f1c625257a93a18bec49a5a500b3f78e;p=onak.git diff --git a/mem.c b/mem.c index 83ffa55..5ba9090 100644 --- a/mem.c +++ b/mem.c @@ -6,13 +6,13 @@ * Copyright 2002 Project Purple */ -#include #include #include #include #include "keystructs.h" #include "ll.h" +#include "log.h" #include "mem.h" /** @@ -27,7 +27,7 @@ struct openpgp_packet *packet_dup(struct openpgp_packet *packet) { struct openpgp_packet *newpacket = NULL; - assert(packet != NULL); + log_assert(packet != NULL); newpacket = malloc(sizeof (struct openpgp_packet)); if (newpacket != NULL) { @@ -59,8 +59,8 @@ void packet_list_add(struct openpgp_packet_list **list, struct openpgp_packet_list **list_end, struct openpgp_packet_list *packet_list) { - assert(list != NULL); - assert(list_end != NULL); + log_assert(list != NULL); + log_assert(list_end != NULL); for (; packet_list != NULL; packet_list = packet_list->next) { ADD_PACKET_TO_LIST((*list_end), @@ -81,7 +81,7 @@ void packet_list_add(struct openpgp_packet_list **list, * including the data part. */ void free_packet(struct openpgp_packet *packet) { - assert(packet != NULL); + log_assert(packet != NULL); if (packet->data != NULL) { free(packet->data); @@ -100,7 +100,7 @@ void free_packet(struct openpgp_packet *packet) { void free_packet_list(struct openpgp_packet_list *packet_list) { struct openpgp_packet_list *nextpacket = NULL; - assert(packet_list != NULL); + log_assert(packet_list != NULL); while (packet_list != NULL) { nextpacket = packet_list->next; @@ -123,7 +123,7 @@ void free_signedpacket_list( struct openpgp_signedpacket_list *signedpacket_list) { struct openpgp_signedpacket_list *nextpacket = NULL; - assert(signedpacket_list != NULL); + log_assert(signedpacket_list != NULL); while (signedpacket_list != NULL) { nextpacket = signedpacket_list->next; @@ -148,7 +148,7 @@ void free_signedpacket_list( void free_publickey(struct openpgp_publickey *key) { struct openpgp_publickey *nextkey = NULL; - assert(key != NULL); + log_assert(key != NULL); while (key != NULL) { nextkey = key->next;