Removing extra semicolon and Changelog.

git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@162 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
Marcelo Roberto Jimenez 2007-04-26 11:14:27 +00:00
parent bbe85ef599
commit e04192e1d0
2 changed files with 7 additions and 3 deletions

View File

@ -7,6 +7,10 @@ Version 1.4.5
suggested by Craig Nelson in SF Tracker [ 1689382 ] DLINK DIR-625
patch.
2007-04-07 Nektarios K. Papadopoulos <npapadop(at)inaccessnetworks.com>
* Fix for a bug in makeAction where va_arg was beeing called one
extra time.
*************************************************************************
Version 1.4.4
*************************************************************************

View File

@ -256,8 +256,8 @@ makeAction( IN int response,
IN const char *Arg,
IN va_list ArgList )
{
const char *ArgName,
*ArgValue;
const char *ArgName;
const char *ArgValue;
char *ActBuff;
int Idx = 0;
IXML_Document *ActionDoc;
@ -298,7 +298,7 @@ makeAction( IN int response,
if( NumArg > 0 ) {
//va_start(ArgList, Arg);
ArgName = Arg;
for(;;;) {
for(;;) {
ArgValue = va_arg( ArgList, const char * );
if( ArgName != NULL ) {