diff options
author | Pixel <pixel@nobis-crew.org> | 2009-06-01 17:37:40 +0000 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-06-01 17:39:30 +0000 |
commit | 11dc9cf95ad1cf60773e87f6a83be2867c9b6f0e (patch) | |
tree | 497cab5ad0dad62bd920487e82a1b4ddede5b59e /include | |
parent | b4202e0c50ccc651f77e46b9bee46e2a7eb3f119 (diff) |
What a horrible bug... you can not deterministically have the output size of ucl_decompress...
Diffstat (limited to 'include')
-rw-r--r-- | include/Handle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Handle.h b/include/Handle.h index 8b9f866..a22c8e0 100644 --- a/include/Handle.h +++ b/include/Handle.h @@ -73,7 +73,7 @@ class Handle : public Base { static int zlib_deflate(Handle * in, Handle * out) throw (GeneralException); #ifdef HAVE_UCL static int ucl_compress(Handle * in, Handle * out, int len_in = -1) throw (GeneralException); - static int ucl_decompress(Handle * in, Handle * out, int len_in = -1) throw (GeneralException); + static int ucl_decompress(Handle * in, Handle * out, unsigned int len_out, int len_in = -1) throw (GeneralException); #endif protected: Handle(int h); |