Needle for guint8_pbrk() must be NULL terminated. Fix bug #7070

svn path=/trunk/; revision=42042
This commit is contained in:
Jakub Zawadzki 2012-04-13 10:38:41 +00:00
parent 6f91bcc65a
commit 12ea608604
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ static gint ett_irc_request_command = -1;
static gint ett_irc_response = -1;
static gint ett_irc_response_command = -1;
static const guint8 TAG_DELIMITER[] = {0x01};
static const guint8 TAG_DELIMITER[] = {0x01, 0x00};
#define TCP_PORT_IRC 6667