| Index: chrome/browser/sync/glue/non_ui_data_type_controller.cc
|
| diff --git a/chrome/browser/sync/glue/non_ui_data_type_controller.cc b/chrome/browser/sync/glue/non_ui_data_type_controller.cc
|
| index a1a476dea969ab06b656c9b20b651ed7deec5a1a..860ea10c585602eeea622e04516662e4ac62216a 100644
|
| --- a/chrome/browser/sync/glue/non_ui_data_type_controller.cc
|
| +++ b/chrome/browser/sync/glue/non_ui_data_type_controller.cc
|
| @@ -398,7 +398,7 @@ void NonUIDataTypeController::ClearSharedChangeProcessor() {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| // |shared_change_processor_| can already be NULL if Stop() is
|
| // called after StartDoneImpl(_, DISABLED, _).
|
| - if (shared_change_processor_) {
|
| + if (shared_change_processor_.get()) {
|
| shared_change_processor_->Disconnect();
|
| shared_change_processor_ = NULL;
|
| }
|
|
|