Updates:
        Status: Duplicate
        Mergedinto: 16371

Comment #3 on issue 28608 by [email protected]: Crash -  
base::SharedMemory::CreateOrOpen(std::basic_string<wchar_t,  
std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, int, unsigned  
long)
http://code.google.com/p/chromium/issues/detail?id=28608

This is crashing in a check that hawk added to base/shared_memory_posix.cc:

205:    if (current_size != size) {
206:      // TODO(hawk): When finished with bug 16371, revert this CHECK()  
to:
207:      // if (ftruncate(fileno(fp), size) != 0)
208:      //   return false;
209:      CHECK(!ftruncate(fileno(fp), size));
210:      if (fseeko(fp, size, SEEK_SET) != 0)
211:        return false;
212:    }

So far, there's only one instance of this for 249.12, so I don't really see  
it as a Beta blocker.

This is really a dupe of issue 16371 (the fix for that bug removes this  
CHECK + other goodness).

We should merge r32701

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

-- 
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs

Reply via email to