You are not logged in.
Pages: 1
Thanks, hashing is a good idea
Hi, is there a way to determine if (maybe invalid) data can be decompressed with SynLZ without access violation?
Something like
if is_synlzcompressed(str) then
synlz_decompress(str)
else
showmessage('invalid data');
Or is
try
synlz_decompress(str);
except
showmessage('invalid data');
end;
the only way?
Thanks
Pages: 1