Chromium Code Reviews| Index: chrome/browser/extensions/extension_prefs.cc |
| =================================================================== |
| --- chrome/browser/extensions/extension_prefs.cc (revision 72910) |
| +++ chrome/browser/extensions/extension_prefs.cc (working copy) |
| @@ -1144,6 +1144,8 @@ |
| CHECK(out); |
| const DictionaryValue* extensions = |
| pref_service()->GetDictionary(kExtensionsPref); |
| + if (!extensions) |
| + return; |
|
Mattias Nissler (ping if slow)
2011/01/28 09:27:03
Hm. I'd say that the problem is really with the Pr
Aaron Boodman
2011/01/29 19:24:04
cpu, did you find a case of this actually returnin
|
| for (DictionaryValue::key_iterator ext_id = extensions->begin_keys(); |
| ext_id != extensions->end_keys(); ++ext_id) { |