- comment update for bug report #945607

- compile error fix for MinGW


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3534 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2004-05-01 12:57:57 +00:00
parent f9b9956dd2
commit 33cd11c7eb
2 changed files with 3 additions and 2 deletions

View file

@ -6,7 +6,8 @@ LZMA SDK 4.01 Copyright (c) 1999-2004 Igor Pavlov (2004-02-15)
Converted to a state machine by Amir Szekely
*/
#include "LzmaDecode.h"
#include <stdlib.h>
#include "LZMADecode.h"
#define LEAVE { goto saveStateAndReturn; }
#define NEED_BYTE(c) case c: if (!avail_in) { mode = c; LEAVE; }

View file

@ -85,7 +85,7 @@ typedef struct
Byte *next_out; /* next output byte should be put there */
UInt32 avail_out; /* remaining free space at next_out */
UInt32 totalOut; /* total output */
UInt32 totalOut; /* total output - not always correct when lzmaDecode returns */
/* saved state */
Byte previousByte;