File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ PHP 4 NEWS
3
3
?? Jun 2004, Version 4.3.7
4
4
- Changed user error handler mechanism to relay to built-in error handler if it
5
5
returns false. (Andrei)
6
+ - Fixed bug #28597 (xmlrpc_encode_request() incorrectly encodes chars in
7
+ 200-210 range). (fernando dot nemec at folha dot com dot br, Ilia)
6
8
- Fixed bug #28569 (informix connection id is not thread safe).
7
9
(novicky at aarongroup dot cz, Ard)
8
10
- Fixed bug #28564 (Problem building informix as a shared extension).
Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ static const char rcsid[] = "#(@) $Id$";
44
44
* 06/2000
45
45
* HISTORY
46
46
* $Log$
47
+ * Revision 1.3.4.2 2003/12/16 21:00:35 sniper
48
+ * MFH: fix compile warnings
49
+ *
47
50
* Revision 1.3.4.1 2002/11/27 04:07:00 fmk
48
51
* MFH
49
52
*
@@ -265,10 +268,9 @@ static int create_xml_escape(char *pString, unsigned char c)
265
268
pString [counter ++ ] = c / 100 + '0' ;
266
269
c = c % 100 ;
267
270
}
268
- if (c >= 10 ) {
269
- pString [counter ++ ] = c / 10 + '0' ;
270
- c = c % 10 ;
271
- }
271
+ pString [counter ++ ] = c / 10 + '0' ;
272
+ c = c % 10 ;
273
+
272
274
pString [counter ++ ] = c + '0' ;
273
275
pString [counter ++ ] = ';' ;
274
276
return counter ;
You can’t perform that action at this time.
0 commit comments