XMPPFramework
XMPPFramework copied to clipboard
Crash in KissXML-->DDXMLNode--> "description" method
While I investigated the issue nil case is not handled in method ** (NSString *)XMLStringWithOptions:(NSUInteger)options ** .
xmlString = [NSMutableString stringWithUTF8String:(const char *)bufferPtr->content];
// Below line is main culprit, when xmlString is **nil** crash occurs. please handle nil case here
CFStringTrimWhitespace((__bridge CFMutableStringRef)xmlString);
Did you solve this issue?