Bug 956961 - FileDescriptorToFILE should always use its input. r=bent

This commit is contained in:
Jed Davis
2014-07-02 11:22:40 -07:00
parent a7ef68b624
commit bf85f6f7c0

View File

@@ -91,11 +91,13 @@ FILE*
FileDescriptorToFILE(const FileDescriptor& aDesc,
const char* aOpenMode)
{
// Debug builds check whether the handle was "used", even if it's
// invalid, so that needs to happen first.
FileDescriptor::PlatformHandleType handle = aDesc.PlatformHandle();
if (!aDesc.IsValid()) {
errno = EBADF;
return nullptr;
}
FileDescriptor::PlatformHandleType handle = aDesc.PlatformHandle();
#ifdef XP_WIN
int fd = _open_osfhandle(reinterpret_cast<intptr_t>(handle), 0);
if (fd == -1) {