applied patch #1434174 - GCC 4.2 patches

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4533 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2006-02-24 16:19:55 +00:00
parent 9ec765a72b
commit 8e9a79a4b7
3 changed files with 8 additions and 3 deletions

View file

@ -145,7 +145,7 @@ int LZMACALL lzmaDecode(lzma_stream *s)
#define last2 _s.last2
#define last3 _s.last3
#define p ((CProb *) _s.dynamicData)
#define p (*(CProb **) &_s.dynamicData)
#define dynamicDataSize _s.dynamicDataSize
#define state _s.state
@ -184,7 +184,7 @@ int LZMACALL lzmaDecode(lzma_stream *s)
#define result _s.temp2
#define numLevels _s.temp3
#define posSlot _s.temp2
#define newDictionarySize ((UInt32) _s.temp3)
#define newDictionarySize (*(UInt32*) &_s.temp3)
#define matchByte _s.matchByte
#define mi _s.mi