Monotone-Parent: d4b6685b33be650d23fc020ef3de5d203cb4557e

Monotone-Revision: aa2df14071d3f06710efeac3490e7780366f1b42

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-01-12T03:42:00
maint-2.0.2
Wolfgang Sourdeau 2012-01-12 03:42:00 +00:00
parent d5377f90b5
commit ca798c646e
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2012-01-11 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* NSString+NGCards.m (-asCardAttributeValues): fixed a leak by
freeing "characters" at the end of the method.
2012-01-09 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* NSString+NGCards.m (-vCardSubvalues): fixed allocation of

View File

@ -148,6 +148,8 @@
[values addObject: newString];
[newString release];
NSZoneFree (NULL, characters);
return values;
}