diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-25 03:20:32 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-25 03:20:32 +0000 |
commit | 32c467ffa83198173d5f818900a3cb2449385709 (patch) | |
tree | a60bfea39816664949792c248aacf1e4f7d9d089 /src/common | |
parent | 87f869a7b32d02b16e89f7abb6f202653fcf70e6 (diff) | |
download | hercules-32c467ffa83198173d5f818900a3cb2449385709.tar.gz hercules-32c467ffa83198173d5f818900a3cb2449385709.tar.bz2 hercules-32c467ffa83198173d5f818900a3cb2449385709.tar.xz hercules-32c467ffa83198173d5f818900a3cb2449385709.zip |
- Simplified npc_gettimerevent_tick so that it should return a tick value even after the last ontimer label has been reached.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6264 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/grfio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/grfio.c b/src/common/grfio.c index 81a5ef7c5..eae06eada 100644 --- a/src/common/grfio.c +++ b/src/common/grfio.c @@ -299,7 +299,7 @@ int decode_zip(unsigned char *dest, unsigned long* destLen, const unsigned char* int encode_zip(unsigned char *dest, unsigned long* destLen, const unsigned char* source, unsigned long sourceLen) {
z_stream stream;
int err;
-
+ memset(&stream, 0, sizeof(stream));
stream.next_in = (Bytef*)source;
stream.avail_in = (uInt)sourceLen;
/* Check for source > 64K on 16-bit machine: */
|