Merge "Fix NPE in resetVisibleLimits" into froyo

This commit is contained in:
Marc Blank 2010-04-01 17:08:30 -07:00 committed by Android (Google) Code Review
commit 66a9b199a0
1 changed files with 3 additions and 1 deletions

View File

@ -488,7 +488,9 @@ public class Controller {
}
}
} finally {
c.close();
if (c != null) {
c.close();
}
}
}
}.start();