Merge "Fix NPE in SyncManager" into froyo

This commit is contained in:
Marc Blank 2010-04-30 10:39:30 -07:00 committed by Android (Google) Code Review
commit 09f0ab0454

View File

@ -1180,9 +1180,11 @@ public class SyncManager extends Service implements Runnable {
} }
static private synchronized void shutdownConnectionManager() { static private synchronized void shutdownConnectionManager() {
if (sClientConnectionManager != null) {
sClientConnectionManager.shutdown(); sClientConnectionManager.shutdown();
sClientConnectionManager = null; sClientConnectionManager = null;
} }
}
public static void stopAccountSyncs(long acctId) { public static void stopAccountSyncs(long acctId) {
SyncManager syncManager = INSTANCE; SyncManager syncManager = INSTANCE;