From 63f725f8c9165706172e112fd945181a88e1418f Mon Sep 17 00:00:00 2001 From: Stefan Esser Date: Mon, 25 Dec 2017 18:48:58 -0800 Subject: [PATCH] Fix DEBUG build. --- upnpreplyparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upnpreplyparse.c b/upnpreplyparse.c index 2411f05..d3243d9 100644 --- a/upnpreplyparse.c +++ b/upnpreplyparse.c @@ -122,7 +122,7 @@ DisplayNameValueList(char * buffer, int bufsize) { struct NameValueParserData pdata; struct NameValue * nv; - ParseNameValue(buffer, bufsize, &pdata); + ParseNameValue(buffer, bufsize, &pdata, XML_STORE_EMPTY_FL); for(nv = pdata.head.lh_first; nv != NULL; nv = nv->entries.le_next)