Skip to content

Commit

Permalink
Release 1.51.03
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.code.sf.net/p/xmlrpc-c/code@3018 98333e67-4a24-44d7-a75c-e53540dd3050
  • Loading branch information
giraffedata committed Sep 30, 2018
1 parent d2f3481 commit 343a3b9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions stable/src/xmlrpc_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,11 @@ xmlrpc_createXmlrpcValue(xmlrpc_env * const envP,
"xmlrpc_value");
else
valP->refcount = 1;

if (envP->fault_occurred) {
free(valP);
valP = NULL;
}
}
*valPP = valP;
}
Expand Down
2 changes: 1 addition & 1 deletion stable/version.mk
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
###############################################################################
XMLRPC_MAJOR_RELEASE = 1
XMLRPC_MINOR_RELEASE = 51
XMLRPC_POINT_RELEASE = 2
XMLRPC_POINT_RELEASE = 3

0 comments on commit 343a3b9

Please sign in to comment.