matts 2005/02/21 11:10:25
Modified: lib/Apache/AxKit CharsetConv.xs
Log:
Change free to Safefree() to fix RT bug #11387
Revision Changes Path
1.5 +2 -2 xml-axkit/lib/Apache/AxKit/CharsetConv.xs
Index: CharsetConv.xs
===================================================================
RCS file: /home/cvs/xml-axkit/lib/Apache/AxKit/CharsetConv.xs,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- CharsetConv.xs 13 Aug 2002 17:21:57 -0000 1.4
+++ CharsetConv.xs 21 Feb 2005 19:10:25 -0000 1.5
@@ -194,5 +194,5 @@
CODE:
/* printf("Now in Apache::AxKit::CharsetConv::DESTROY\n"); */
(void) iconv_close(self->iconv_handle);
- free(self);
+ Safefree(self);