double predicates in xpath; leaks; grideye debug

This commit is contained in:
Olof hagsand 2016-03-26 10:47:58 +01:00
parent c1c1670a74
commit 741fb97a9f
13 changed files with 453 additions and 242 deletions

View file

@ -244,7 +244,7 @@ from_client_xmlput(clicon_handle h,
cvec *cvv = NULL;
char *str = NULL;
char *xml = NULL;
cxobj *xt;
cxobj *xt = NULL;
int piddb;
if (clicon_msg_xmlput_decode(msg,
@ -283,6 +283,8 @@ from_client_xmlput(clicon_handle h,
free(str);
if (cvv)
cvec_free (cvv);
if (xt)
xml_free(xt);
return retval;
}