]> git.saurik.com Git - apple/cf.git/blobdiff - CFXMLParser.c
CF-635.tar.gz
[apple/cf.git] / CFXMLParser.c
index 4153ad41207a6c5dd70f5bc449643cedca79bb32..5721ef382fadce95ae170c728a744ee9d6eb47e6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2010 Apple Inc. All rights reserved.
+ * Copyright (c) 2011 Apple Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
@@ -22,8 +22,8 @@
  */
 
 /*     CFXMLParser.c
-       Copyright (c) 1999-2009, Apple Inc. All rights reserved.
-       Responsibility: Chris Parker
+       Copyright (c) 1999-2011, Apple Inc. All rights reserved.
+       Responsibility: David Smith
 */
 
 #include <CoreFoundation/CFXMLParser.h>
@@ -1630,8 +1630,8 @@ Boolean parseAttributes(CFXMLParserRef parser) {
             break;
         }
         if (CFArrayGetFirstIndexOfValue(array, CFRangeMake(0, CFArrayGetCount(array)), key) != kCFNotFound) {
-            _CFReportError(parser, kCFXMLErrorMalformedStartTag, "Found repeated attribute");
-            return false;
+                _CFReportError(parser, kCFXMLErrorMalformedStartTag, "Found repeated attribute");
+                return false;
         }
         _inputStreamSkipWhitespace(&parser->input, NULL);
         if (!_inputStreamGetCharacter(&parser->input, &ch) || ch != '=') {