]> err.no Git - sope/commitdiff
fixed autorelease bug in SaxObjectDecoder
authorznek <znek@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Sat, 29 Jan 2005 15:20:48 +0000 (15:20 +0000)
committerznek <znek@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Sat, 29 Jan 2005 15:20:48 +0000 (15:20 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@533 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-xml/SaxObjC/ChangeLog
sope-xml/SaxObjC/SaxObjC.xcode/project.pbxproj
sope-xml/SaxObjC/SaxObjectDecoder.m
sope-xml/SaxObjC/Version

index 3dd60c5d2e1578725be4b8db8c6343565483585f..c6a616da402911e92882a53660fd987e6f78c2c4 100644 (file)
@@ -1,3 +1,7 @@
+2005-01-29  Marcus Mueller  <znek@mulle-kybernetik.com>
+
+       * SaxObjectDecoder.m: fixed hard to spot autorelease bug (v4.5.48)
+
 2004-11-12  Max Berger  <max@berger.name>
 
        * SaxXMLReaderFactory.m: fixed SaxDriver lookup for gstep-base on
index e7d573a9b5d546a34faa410214433bb991a6000d..ec2fd308e9d0324edd551f35f885c6ec65fab288 100644 (file)
                        );
                        buildSettings = {
                                DYLIB_COMPATIBILITY_VERSION = 1;
-                               DYLIB_CURRENT_VERSION = 4.5.47;
+                               DYLIB_CURRENT_VERSION = 4.5.48;
                                FRAMEWORK_VERSION = A;
                                GCC_PRECOMPILE_PREFIX_HEADER = YES;
                                GCC_PREFIX_HEADER = common.h;
index 4bd561be1edb110bd7a55fed94996a2081c99001..f9f904a4a54a4145b2743d68b105ef8ced8fadf2 100644 (file)
@@ -470,7 +470,7 @@ static Class  StringClass        = Nil;
     old = self->object;
     
     tmp = [[NSString alloc] initWithCharacters:_chars length:_len];
-    self->object = [self->object stringByAppendingString:tmp];
+    self->object = [[self->object stringByAppendingString:tmp] retain];
     [tmp release];
     [old release];
   }
index 25b5b300b1c04946a177a8da7354fa8f8d53c6bf..9c2df247a496f1acd4f3a8921372e447845bb7ef 100644 (file)
@@ -1,3 +1,3 @@
 # version file
 
-SUBMINOR_VERSION:=47
+SUBMINOR_VERSION:=48