]> err.no Git - scalable-opengroupware.org/commitdiff
fixed a memleak
authorhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Thu, 14 Jul 2005 15:11:02 +0000 (15:11 +0000)
committerhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Thu, 14 Jul 2005 15:11:02 +0000 (15:11 +0000)
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@757 d1b88da0-ebda-0310-925b-ed51d893ca5b

SOGo/UI/Scheduler/ChangeLog
SOGo/UI/Scheduler/UIxAppointmentView.m
SOGo/UI/Scheduler/Version

index 4e7da6235a5fc974b15592b2291fe433f4cfead7..8f70e0db72079267a91b03f4a5166138b5c53f7a 100644 (file)
@@ -1,3 +1,8 @@
+2005-07-14  Helge Hess  <helge.hess@opengroupware.org>
+
+       * UIxAppointmentView.m: fixed a small memory leak when creating the
+         categories string (v0.9.132)
+
 2005-07-14  Marcus Mueller  <znek@mulle-kybernetik.com>
 
        * product.plist: removed 'schedule' method from SOGoAppointmentFolder
index 08028decd410592369ad3594ed861e265e4d17a6..51f5f691ce0dd41be6d55fd024c890e48d90c17d 100644 (file)
   NSArray *cats;
   NSMutableString *s;
   
-  s = [[NSMutableString alloc] init];
+  s = [NSMutableString stringWithCapacity:32];
   cats = [((SOGoAppointment *)self->appointment) categories];
   count = [cats count];
   for(i = 0; i < count; i++) {
index 88983a4666f1f4fd7ce9fac2ded6a6ebf2c3102c..0999fc5b6daf84ad279ff2f2ecd51664b05ca98e 100644 (file)
@@ -1,6 +1,6 @@
 # Version file
 
-SUBMINOR_VERSION:=131
+SUBMINOR_VERSION:=132
 
 # v0.9.123 requires Appointments v0.9.35
 # v0.9.123 requires SOGoUI       v0.9.24