Support Request #100107, was updated on 2001-Aug-09 13:08 You can respond by visiting: http://savannah.gnu.org/support/?func=detailsupport&support_id=100107&group_id=99 Category: None Status: Open Priority: 5 Summary: XML property lists problem By: rst Date: 2001-Aug-09 13:08 Message: Logged In: NO Browser: Mozilla/5.0 (Windows; U; Win95; en-US; rv:0.9.3+) Gecko/20010806 XML Property Lists containing <string></string> in dictionaries refuse to load properly. This is a patch to fix the problem: --- core/base/Source/NSString.m Fri Aug 3 08:24:25 2001 +++ core.tmp/base/Source/NSString.m Thu Aug 9 15:49:37 2001 @@ -4476,6 +4476,8 @@ } content = [NSString stringWithCharacters: buf length: len]; } + if([content length] == 0) + return @""; return content; } else if ([name isEqualToString: @"true"]) With this patch, the GNUstep behavior more closely matches Apple's Foundation behavior. ---------------------------------------------------------------------- You can respond by visiting: http://savannah.gnu.org/support/?func=detailsupport&support_id=100107&group_id=99 _______________________________________________ Bug-gnustep mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-gnustep
