From 180bcdfa3f4a16e7a92869cdb34e6bdb7778de04 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Mon, 10 Sep 2007 15:51:16 +0000 Subject: fixed a bug that in --enable-debug mode caused an assertion when the discard action was used --- module-template.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module-template.h b/module-template.h index 05ef22a7..edf84a12 100644 --- a/module-template.h +++ b/module-template.h @@ -100,7 +100,7 @@ static rsRetVal doAction(uchar __attribute__((unused)) **ppString, unsigned __at DEFiRet; #define CODESTARTdoAction \ - assert(ppString != NULL); + /* ppString may be NULL if the output module requested no strings */ #define ENDdoAction \ return iRet;\ -- cgit v1.2.3