]> err.no Git - sope/commitdiff
do not use -setUserInfo:
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Thu, 21 Feb 2008 22:05:23 +0000 (22:05 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Thu, 21 Feb 2008 22:05:23 +0000 (22:05 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@1607 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-core/NGExtensions/ChangeLog
sope-core/NGExtensions/FdExt.subproj/NGPropertyListParser.m
sope-core/NGExtensions/Version

index 8239fae78a6d164bf8c092a4d2553f362f74e301..f54aba740806dcf3c84b087570143f44b5ba5829 100644 (file)
@@ -1,3 +1,8 @@
+2008-02-21  Helge Hess  <helge.hess@opengroupware.org>
+
+       * FdExt.subproj/NGPropertyListParser.m: fixed NSException not to use
+         -setUserInfo: (v4.7.199)
+
 2008-02-11  Helge Hess  <helge.hess@opengroupware.org>
 
        * EOExt.subproj/EOGlobalID+Ext.m: explicitly include NSString.h to
index 8e9fb4cc706a685d8cab2fced2147ebe669fdd77..04d039da7a475c2d8efdffab6d834155c569da3f 100644 (file)
@@ -1,5 +1,6 @@
 /*
-  Copyright (C) 2000-2005 SKYRIX Software AG
+  Copyright (C) 2000-2008 SKYRIX Software AG
+  Copyright (C) 2008      Helge Hess
 
   This file is part of SOPE.
 
@@ -424,25 +425,19 @@ static NSException *_makeException(NSException *_exception,
     int         numLines   = _numberOfLines(_buffer, _idx);
     BOOL        atEof      = (_idx >= _len) ? YES : NO;
 
-    if (_exception) // error resulted from a previous error (exception already set)
+    if (_exception != nil) 
+       // error resulted from a previous error (exception already set)
         return _exception;
 
-    exception = [NSException exceptionWithName:@"SyntaxErrorException"
-                             reason:nil
-                             userInfo:nil];
-
     _text = atEof
         ? [NSString stringWithFormat:@"Unexpected end: %@", _text]
-        : [NSString stringWithFormat:@"Syntax error in line %i: %@", numLines,_text];
-  
-    [exception setReason:_text];
-
+        : [NSString stringWithFormat:@"Syntax error in line %i: %@",
+                   numLines,_text];
+    
     // user info
     {
-        ui = [[exception userInfo] mutableCopy];
-        if (ui == nil)
-            ui = [[NSMutableDictionary alloc] initWithCapacity:8];
-
+       ui = [[NSMutableDictionary alloc] initWithCapacity:8];
+       
         [ui setObject:[NSNumber numberWithInt:numLines] forKey:@"line"];
         [ui setObject:[NSNumber numberWithInt:_len]     forKey:@"size"];
         [ui setObject:[NSNumber numberWithInt:_idx]     forKey:@"position"];
@@ -486,12 +481,13 @@ static NSException *_makeException(NSException *_exception,
             else
                 NSLog(@"startPos=0x%p endPos=0x%p", startPos, endPos);
         }
-    
-        [exception setUserInfo:ui];
-    
-        [ui release]; ui = nil;
     }
 
+    exception = [NSException exceptionWithName:@"SyntaxErrorException"
+                             reason:_text
+                             userInfo:ui];
+    [ui release]; ui = nil;
+    
     return exception;
 }
 
index c117e6db872196aeca42156576e7e767d97b8b5d..d282e4a0766bd84f96826fc054d8f1821ae77c2b 100644 (file)
@@ -1,6 +1,6 @@
 # version
 
-SUBMINOR_VERSION:=198
+SUBMINOR_VERSION:=199
 
 # v4.3.115 requires libFoundation v1.0.59
 # v4.2.72  requires libEOControl  v4.2.39