Navigation Menu

Skip to content

Commit

Permalink
Fixed a memory leak in __startElementNS.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanQuatermain committed Apr 22, 2009
1 parent 68541a3 commit 961ce31
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions StreamingXMLParser/AQXMLParser.m
Expand Up @@ -639,6 +639,7 @@ static void __startElementNS( void * ctx, const xmlChar *localname, const xmlCha

[attrDict setObject: attrValue forKey: attrQualified];

[attrLocalName release];
[attrQualified release];
[attrValue release];
}
Expand Down

0 comments on commit 961ce31

Please sign in to comment.