fixes dav_ql_free_arglist() not freeing the list container

Wed, 30 May 2018 11:00:37 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 30 May 2018 11:00:37 +0200
changeset 387
92f8a2a243fc
parent 386
99193580aa9d
child 388
0b96ae226838

fixes dav_ql_free_arglist() not freeing the list container

libidav/davqlexec.c file | annotate | diff | comparison | revisions
--- a/libidav/davqlexec.c	Wed May 30 10:44:51 2018 +0200
+++ b/libidav/davqlexec.c	Wed May 30 11:00:37 2018 +0200
@@ -96,6 +96,7 @@
         free(arg);
         arg = next;
     }
+    free(args);
 }
 
 static DavQLArg* arglist_get(DavQLArgList *args) {

mercurial