result2 seems to be optional, making it 0 allows IE to continue.
This commit is contained in:
parent
903d1f25ce
commit
f902d2965f
|
@ -125,9 +125,10 @@ HRESULT WINAPI Extract(EXTRACTdest *dest, LPCSTR what)
|
||||||
* DXDDEX.CAB, DXMINI.CAB, SWFLASH.CAB on win2k
|
* DXDDEX.CAB, DXMINI.CAB, SWFLASH.CAB on win2k
|
||||||
* but it crashes the ie5.5 installer :-( . The native dll does not return
|
* but it crashes the ie5.5 installer :-( . The native dll does not return
|
||||||
* the four zeros. The value depends on the combination of the cab file and
|
* the four zeros. The value depends on the combination of the cab file and
|
||||||
* the destination path
|
* the destination path. It appears to be a pointer to an optional return struct.
|
||||||
|
* The IE6 installer derefs this value + 4. Contents currently unknown.
|
||||||
*/
|
*/
|
||||||
dest->result2=0x130000;
|
dest->result2 = 0;
|
||||||
|
|
||||||
LocalFree(dir);
|
LocalFree(dir);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue