Index: src/platform-solaris.cc |
diff --git a/src/platform-solaris.cc b/src/platform-solaris.cc |
index 0106e5796b5617ad0b854542566aa3a0fc9e5b64..4248ea214faa9b7d2c23ec4527d668d4ce542e2c 100644 |
--- a/src/platform-solaris.cc |
+++ b/src/platform-solaris.cc |
@@ -487,12 +487,10 @@ void Thread::set_name(const char* name) { |
void Thread::Start() { |
- pthread_attr_t* attr_ptr = NULL; |
pthread_attr_t attr; |
if (stack_size_ > 0) { |
pthread_attr_init(&attr); |
pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_)); |
- attr_ptr = &attr; |
} |
pthread_create(&data_->thread_, NULL, ThreadEntry, this); |
ASSERT(data_->thread_ != kNoThread); |