diff options
Diffstat (limited to 'dom/fs/api/FileSystemHandle.cpp')
-rw-r--r-- | dom/fs/api/FileSystemHandle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/fs/api/FileSystemHandle.cpp b/dom/fs/api/FileSystemHandle.cpp index d0accdea00..79151920c0 100644 --- a/dom/fs/api/FileSystemHandle.cpp +++ b/dom/fs/api/FileSystemHandle.cpp @@ -210,7 +210,7 @@ already_AddRefed<FileSystemHandle> FileSystemHandle::ReadStructuredClone( JSStructuredCloneReader* aReader) { LOG_VERBOSE(("Reading File/DirectoryHandle")); - uint32_t kind = static_cast<uint32_t>(FileSystemHandleKind::EndGuard_); + uint32_t kind = UINT32_MAX; if (!JS_ReadBytes(aReader, reinterpret_cast<void*>(&kind), sizeof(uint32_t))) { |