- 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:
parent
f9b9956dd2
commit
33cd11c7eb
2 changed files with 3 additions and 2 deletions
|
@ -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; }
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue