propagate from branch 'ca.inverse.sogo.1_3_12' (head aa2df14071d3f06710efeac3490e7780366f1b42)

to branch 'ca.inverse.sogo' (head 07cee513cf2aa27a1e3b8d634bb8482ad3645cdf)

Monotone-Parent: 07cee513cf2aa27a1e3b8d634bb8482ad3645cdf
Monotone-Parent: aa2df14071d3f06710efeac3490e7780366f1b42
Monotone-Revision: 401881ecc26daa2ed137a36540462655a8e4504c

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-01-12T03:42:17
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2012-01-12 03:42:17 +00:00
commit 124d237f2d
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;
}