| Index: net/base/directory_lister.cc
|
| diff --git a/net/base/directory_lister.cc b/net/base/directory_lister.cc
|
| index 7ea862f69045b7492fe42aab2757fcf958ca8e4c..8204fd8220bf6c41e17147cf24f7c2bba60626e3 100644
|
| --- a/net/base/directory_lister.cc
|
| +++ b/net/base/directory_lister.cc
|
| @@ -55,7 +55,7 @@ DirectoryLister::DirectoryLister(const FilePath& dir,
|
| : dir_(dir),
|
| delegate_(delegate),
|
| message_loop_(NULL),
|
| - thread_(NULL),
|
| + thread_(kNullThreadHandle),
|
| canceled_(false) {
|
| DCHECK(!dir.value().empty());
|
| }
|
| @@ -88,7 +88,7 @@ void DirectoryLister::Cancel() {
|
|
|
| if (thread_) {
|
| PlatformThread::Join(thread_);
|
| - thread_ = NULL;
|
| + thread_ = kNullThreadHandle;
|
| }
|
| }
|
|
|
|
|