void silc_message_payload_free(SilcMessagePayload payload)
{
+ silc_message_signed_payload_free(&payload->sig);
if (payload->data) {
memset(payload->data, 0, payload->data_len);
if (payload->allocated)
silc_free(payload->pad);
silc_free(payload);
}
- silc_message_signed_payload_free(&payload->sig);
}
/* Return flags */
Author: Pekka Riikonen <priikone@silcnet.org>
- Copyright (C) 2002 - 2005 Pekka Riikonen
+ Copyright (C) 2002 - 2007 Pekka Riikonen
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
#define SILC_STATUS_ERR_OPERATION_ALLOWED 56
#define SILC_STATUS_ERR_BAD_SERVER 57
#define SILC_STATUS_ERR_BAD_USERNAME 58
+#define SILC_STATUS_ERR_NO_SUCH_PUBLIC_KEY 59
/***/
#define SILC_STATUS_IS_ERROR(status) (status >= SILC_STATUS_ERR_NO_SUCH_NICK)