I think there is a bug in this function:

- (void) descriptionWithLocale: (NSDictionary*)aLocale
   indent: (unsigned)level
       to: (id<GNUDescriptionDestination>)output
{
  if ([self length] == 0)
    {
      [output appendString: @"\"\""];
      return;
    }

  if (quotables == nil)
    {
      setupQuotables();
    }
  if ([self rangeOfCharacterFromSet: quotables].length > 0)
    {
      const char *cstring = [self cString];    // <-- BUG; shouldn't it be
lossyCString?
      const char *from;
      int  len = 0;



_______________________________________________
Bug-gnustep mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-gnustep

Reply via email to