From: Andreas Steffen Date: Mon, 10 Jan 2011 04:08:07 +0000 (+0100) Subject: initialize the reference count correctly X-Git-Tag: 4.5.1~118 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8d0d0f0fe9fc9cb60a3dba680c21b9faedf7073a;p=thirdparty%2Fstrongswan.git initialize the reference count correctly --- diff --git a/src/libcharon/plugins/tnccs_11/messages/tnccs_error_msg.c b/src/libcharon/plugins/tnccs_11/messages/tnccs_error_msg.c index 5a876e3810..d0df4e7ca8 100644 --- a/src/libcharon/plugins/tnccs_11/messages/tnccs_error_msg.c +++ b/src/libcharon/plugins/tnccs_11/messages/tnccs_error_msg.c @@ -120,6 +120,7 @@ tnccs_msg_t *tnccs_error_msg_create_from_node(xmlNodePtr node) .get_message = _get_message, }, .type = TNCCS_MSG_ERROR, + .ref = 1, .node = node, .error_type = TNCCS_ERROR_OTHER, ); @@ -165,6 +166,7 @@ tnccs_msg_t *tnccs_error_msg_create(tnccs_error_type_t type, char *msg) .get_message = _get_message, }, .type = TNCCS_MSG_ERROR, + .ref = 1, .node = xmlNewNode(NULL, BAD_CAST "TNCC-TNCS-Message"), .error_type = type, .error_msg = strdup(msg),