Monotone-Parent: 8700a58737ff7392bcc35403e222b4e7d5fac676

Monotone-Revision: 775b7e4fea80568033b5c8bf9b7c5220c7d36041

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-01-27T19:27:58
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-01-27 19:27:58 +00:00
parent 6a9c0a46f2
commit 331e8a4f7d
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2010-01-27 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* Tools/SOGoToolBackup.m (-fetchUserIDs): retain allUsers to avoid
a release between the pool rotation.
2010-01-25 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/SchedulerUI.js

View File

@@ -137,7 +137,7 @@
allUsers = [lm fetchUsersMatching: @"." inDomain: nil];
else
{
allUsers = [NSMutableArray array];
allUsers = [NSMutableArray new];
for (count = 0; count < max; count++)
{
if (count > 0 && count%100 == 0)
@@ -153,6 +153,7 @@
else
NSLog (@"user '%@' unknown", user);
}
[allUsers autorelease];
}
ASSIGN (userIDs, [allUsers objectsForKey: @"c_uid" notFoundMarker: nil]);