oops! Put the other bracket back in.

This commit is contained in:
Doug Simons 2024-05-14 15:44:44 -06:00 committed by GitHub
parent 256700d57d
commit f5f8f61e54
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -833,7 +833,7 @@ execute_xpath(xmlNodePtr node, NSString *xpath_exp, NSDictionary *constants,
NSString *message = [NSString stringWithFormat:@"Error: unable to evaluate xpath expression \"%s\" (%d)", xpathExpr, xmlError.code];
*error = [NSError errorWithDomain: @"LibXMLErrorDomain"
code: xmlError.code
userInfo: [NSDictionary dictionaryWithObject:message forKey:NSLocalizedDescriptionKey];
userInfo: [NSDictionary dictionaryWithObject:message forKey:NSLocalizedDescriptionKey]];
}
xmlXPathFreeContext(xpathCtx);
return nil;