Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Michael Buehlmann
GenericIO
Commits
dc29e2ef
Commit
dc29e2ef
authored
Sep 28, 2018
by
Hal Finkel
Browse files
fix mod to SZ utility.c
parent
1f799c26
Changes
1
Hide whitespace changes
Inline
Side-by-side
thirdparty/SZ/sz/src/utility.c
View file @
dc29e2ef
...
@@ -161,7 +161,7 @@ int is_lossless_compressed_data(unsigned char* compressedBytes, size_t cmpSize)
...
@@ -161,7 +161,7 @@ int is_lossless_compressed_data(unsigned char* compressedBytes, size_t cmpSize)
return
ZSTD_COMPRESSOR
;
return
ZSTD_COMPRESSOR
;
#else
#else
int
frameContentSize
=
ZSTD_getDecompressedSize
(
compressedBytes
,
cmpSize
);
int
frameContentSize
=
ZSTD_getDecompressedSize
(
compressedBytes
,
cmpSize
);
if
(
frameContentSize
=
=
0
)
if
(
frameContentSize
!
=
0
)
return
ZSTD_COMPRESSOR
;
return
ZSTD_COMPRESSOR
;
#endif
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment