1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791
|
/* $Id: inno.c,v 1.2 2003/09/08 17:17:27 twogood Exp $ */
#define _BSD_SOURCE 1
#include "inno.h"
#include "liborange_internal.h"
#include <synce_log.h>
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/param.h> /* for MIN() */
#include <zlib.h>
/*
Inno Setup - comes with source code :-)
www.innosetup.com
Parts of this code is written to match the Delphi code exactly. That's why
the variable names look the way they do, for example.
*/
#define VERBOSE 0
#if VERBOSE
static void dump(const char *desc, void* data, size_t len)/*{{{*/
{
uint8_t* buf = (uint8_t*)data;
size_t i, j;
char hex[8 * 3 + 1];
char chr[8 + 1];
synce_trace("%s (%d bytes):", desc, len);
for (i = 0; i < len + 7; i += 8) {
for (j = 0; j < 8; j++)
if (j + i >= len) {
hex[3*j+0] = ' ';
hex[3*j+1] = ' ';
hex[3*j+2] = ' ';
chr[j] = ' ';
} else {
uint8_t c = buf[j + i];
const char *hexchr = "0123456789abcdef";
hex[3*j+0] = hexchr[(c >> 4) & 0xf];
hex[3*j+1] = hexchr[c & 0xf];
hex[3*j+2] = ' ';
if (c > ' ' && c <= '~')
chr[j] = c;
else
chr[j] = '.';
}
hex[8*3] = '\0';
chr[8] = '\0';
synce_trace(" %04x: %s %s", i, hex, chr);
}
}/*}}}*/
#define DUMP(a,b,c) dump(a,b,c)
#else
#define DUMP(a,b,c)
#endif
int EntryStrings[] = { SetupTypeEntryStrings,
SetupComponentEntryStrings, SetupTaskEntryStrings, SetupDirEntryStrings,
SetupFileEntryStrings, SetupFileLocationEntryStrings, SetupIconEntryStrings,
SetupIniEntryStrings, SetupRegistryEntryStrings, SetupDeleteEntryStrings,
SetupDeleteEntryStrings, SetupRunEntryStrings, SetupRunEntryStrings };
static uint8_t SetupLdrOffsetTableID[] =
{
'r','D','l','P','t','S','0','2',0x87,0x65,0x56,0x78
};
#define OUTPUT_BUFFER_SIZE 0x8000
#define DATA_OFFSET 0xf000
#define FILE_SIGNATURE_SIZE 6
#if 0
static uint8_t FILE_SIGNATURE[FILE_SIGNATURE_SIZE] =
{0x7a, 0x6c, 0x62, 0x1a, 0x78, 0xda};
#endif
static bool orange_inno_decompress(/*{{{*/
FILE* input_file,
TSetupFileLocationEntry* location,
const char* output_filename)
{
bool success = false;
z_stream stream;
int error;
Byte* input_buffer = (Byte*)malloc(location->CompressedSize);
Byte* output_buffer = (Byte*)malloc(OUTPUT_BUFFER_SIZE);
FILE* output = fopen(output_filename, "w");
uLong adler = adler32(0L, Z_NULL, 0);
if (!input_buffer)
{
synce_error("Failed to allocate %i bytes", location->CompressedSize);
goto exit;
}
if (!output_buffer)
{
synce_error("Failed to allocate %i bytes", OUTPUT_BUFFER_SIZE);
goto exit;
}
if (!output)
{
synce_error("Failed to open file for writing: '%s'", output_filename);
goto exit;
}
fseek(input_file, location->StartOffset + 6, SEEK_SET);
if (location->CompressedSize != fread(input_buffer, 1, location->CompressedSize, input_file))
{
goto exit;
}
/* TODO: verify signature */
stream.next_in = input_buffer;
stream.avail_in = location->CompressedSize;
stream.zalloc = NULL;
stream.zfree = NULL;
error = inflateInit2(&stream, -MAX_WBITS);
if (Z_OK != error)
{
synce_error("inflateInit failed with error %i", error);
goto exit;
}
while (error != Z_STREAM_END)
{
uInt bytes_to_write;
stream.next_out = output_buffer;
stream.avail_out = OUTPUT_BUFFER_SIZE;
error = inflate(&stream, Z_NO_FLUSH);
if (error < Z_OK)
{
synce_error("inflate failed with error %i", error);
goto exit;
}
bytes_to_write = OUTPUT_BUFFER_SIZE - stream.avail_out;
adler = adler32(adler, output_buffer, bytes_to_write);
if (bytes_to_write != fwrite(output_buffer, 1, bytes_to_write, output))
{
synce_error("Failed to write %i bytes to output file '%s'",
bytes_to_write, output_filename);
goto exit;
}
}
success = (adler == location->Adler);
exit:
FCLOSE(output);
FREE(output_buffer);
FREE(input_buffer);
return success;
}/*}}}*/
static void InitStream(z_stream* strm)/*{{{*/
{
memset(strm, 0, sizeof(z_stream));
strm->zalloc = NULL;
strm->zfree = NULL;
}/*}}}*/
uint32_t GetCRC32 (void* Buf, size_t BufSize)/*{{{*/
{
return crc32(crc32(0, NULL, 0), (const Bytef*)Buf, BufSize);
}/*}}}*/
static bool InflateBlockReadBegin(FILE* F, TDeflateBlockReadData* Data)/*{{{*/
{
bool success = false;
uint32_t HdrCRC;
TNewBlockDeflateHeader Hdr;
memset(Data, 0, sizeof(TDeflateBlockReadData));
Data->F = F;
Data->StartPos = ftell(F);
/* TODO: check file pos */
fread(&HdrCRC, 1, sizeof(HdrCRC), F);
fread(&Hdr, 1, sizeof(Hdr), F);
LETOH32(HdrCRC);
LETOH32(Hdr.CompressedSize);
LETOH32(Hdr.UncompressedSize);
if (HdrCRC != GetCRC32(&Hdr, sizeof(Hdr)))
{
synce_trace("Invalid block header CRC32");
goto exit;
}
#if VERBOSE
synce_trace("Block size: compressed = %08x, uncompressed = %08x",
Hdr.CompressedSize, Hdr.UncompressedSize);
#endif
if (Hdr.CompressedSize != (uint32_t)-1)
{
Data->Compressed = true;
Data->InBytesLeft = Hdr.CompressedSize;
}
else
Data->InBytesLeft = Hdr.UncompressedSize;
InitStream(&Data->strm);
if (Data->Compressed)
{
int error = inflateInit_(&Data->strm, zlib_version, sizeof(z_stream));
if (Z_OK != error)
{
synce_error("inflateInit failed with error %i", error);
goto exit;
}
}
Data->strm.next_out = Data->OutBuffer;
Data->strm.avail_out = sizeof(Data->OutBuffer);
success = true;
exit:
return success;
}/*}}}*/
static bool InflateBlockRead(TDeflateBlockReadData* Data, void* Buf, size_t Count)/*{{{*/
{
bool success = false;
void* B = Buf;
bool Finished = false;
size_t Left = Count;
size_t OutCount = 0;
long Len = 0;
uint32_t CRC;
int Res;
while (Left != 0)
{
if (Data->strm.avail_in == 0)
{
if (Data->InBytesLeft == 0)
Finished = true;
else
{
Len = Data->InBytesLeft;
if (Len > sizeof(Data->InBuffer))
Len = sizeof(Data->InBuffer);
/* TODO: check file pos */
fread(&CRC, 1, sizeof(CRC), Data->F);
LETOH32(CRC);
fread(Data->InBuffer, 1, Len, Data->F);
Data->InBytesLeft -= Len;
Data->strm.next_in = Data->InBuffer;
Data->strm.avail_in = Len;
if (CRC != GetCRC32(Data->InBuffer, Len))
{
synce_error("Block CRC32 error");
goto exit;
}
}
}
if ((Data->strm.avail_out != 0) &&
(Data->strm.next_out - &Data->OutBuffer[Data->OutBufferStart] < Left))
{
if (Data->NoMoreData)
{
synce_error("No more data. Left = %08x", Left);
abort();
goto exit;
}
if (Data->Compressed)
{
#if VERBOSE
synce_trace("Inflating...");
#endif
Res = inflate(&Data->strm, Finished ? Z_FINISH : Z_NO_FLUSH);
switch (Res)
{
case Z_OK:
break;
case Z_STREAM_END:
Data->NoMoreData = true;
break;
default:
synce_error("zlib error: %i", Res);
goto exit;
}
}
else
{
memcpy(Data->strm.next_out, Data->strm.next_in, OutCount);
Data->strm.avail_in -= OutCount;
Data->strm.next_in += OutCount;
Data->strm.total_in += OutCount;
Data->strm.avail_out -= OutCount;
Data->strm.next_out += OutCount;
Data->strm.total_out += OutCount;
}
}
if (Data->strm.next_out > &Data->OutBuffer[Data->OutBufferStart])
{
OutCount = Data->strm.next_out - &Data->OutBuffer[Data->OutBufferStart];
if (OutCount > Left)
OutCount = Left;
memcpy(B, &Data->OutBuffer[Data->OutBufferStart], OutCount);
Left -= OutCount;
B += OutCount;
Data->OutBufferStart += OutCount;
if (Data->OutBufferStart == sizeof(Data->OutBuffer))
{
Data->strm.next_out = Data->OutBuffer;
Data->strm.avail_out = sizeof(Data->OutBuffer);
Data->OutBufferStart = 0;
}
}
}
success = true;
exit:
return success;
}/*}}}*/
static void InflateBlockReadEnd(TDeflateBlockReadData* Data)/*{{{*/
{
if (Data->Compressed)
inflateEnd(&Data->strm);
}/*}}}*/
static void SEInflateBlockRead(/*{{{*/
TDeflateBlockReadData* Data,
void* Buf,
size_t Count,
int NumStrings)
{
void* P;
int I;
int Len;
char* S;
P = Buf;
for (I = 0; I < NumStrings; I++)
{
InflateBlockRead(Data, &Len, sizeof(Len));
S = malloc(Len+1);
if (Len)
{
InflateBlockRead(Data, S, Len);
}
S[Len] = '\0';
#if VERBOSE
synce_trace("%2i: '%s'", I, S);
#endif
*(char**)P = S;
/*(uint8_t*)*/ P += sizeof(char*);
}
Count -= NumStrings * sizeof(char*);
InflateBlockRead(Data, P, Count);
DUMP("Data after strings", P, Count);
}/*}}}*/
static void FreeStrings(/*{{{*/
void* Buf,
int NumStrings)
{
if (Buf)
{
void* P;
int I;
char* S;
P = Buf;
for (I = 0; I < NumStrings; I++)
{
S = *(char**)P;
FREE(S);
/*(uint8_t*)*/ P += sizeof(char*);
}
}
}/*}}}*/
static bool SkipFile(TDeflateBlockReadData* Data)/*{{{*/
{
bool success = false;
uint32_t BytesLeft;
uint8_t Buf[8192];
size_t Bytes;
if (!InflateBlockRead(Data, &BytesLeft, sizeof(BytesLeft)))
goto exit;
LETOH32(BytesLeft);
#if VERBOSE
synce_trace("Skipping %08x bytes of file data", BytesLeft);
#endif
while (BytesLeft > 0)
{
Bytes = MIN(BytesLeft, sizeof(Buf));
if (!InflateBlockRead(Data, Buf, Bytes))
{
synce_error("InflateBlockRead failed");
goto exit;
}
#if 0
DUMP("File data", Buf, Bytes);
#endif
BytesLeft -= Bytes;
}
success = true;
exit:
return success;
}/*}}}*/
static void ReadEntries(/*{{{*/
TDeflateBlockReadData* Data,
TEntryType EntryType,
size_t Count,
size_t Size,
void* Buf)
{
int I;
void* P;
P = Buf;
for (I = 0; I < Count; I++)
{
SEInflateBlockRead(Data, P, Size, EntryStrings[EntryType]);
#if VERBOSE
if (EntryType == seFile)
{
synce_trace("LocationEntry = %08x",
((TSetupFileEntry*)P)->LocationEntry);
}
#endif
/*(uint8_t*)*/ P += Size;
}
}/*}}}*/
static void FreeEntries(/*{{{*/
TEntryType EntryType,
size_t Count,
size_t Size,
void* Buf)
{
if (Buf)
{
int I;
void* P;
P = Buf;
for (I = 0; I < Count; I++)
{
FreeStrings(P, EntryStrings[EntryType]);
/*(uint8_t*)*/ P += Size;
}
free(Buf);
}
}/*}}}*/
static bool orange_get_inno_offset_table(FILE* SetupFile, TSetupLdrOffsetTable* OffsetTable)/*{{{*/
{
bool success = false;
size_t SizeOfFile;
TSetupLdrExeHeader ExeHeader;
SizeOfFile = FSIZE(SetupFile);
/*
Handle ExeHeader
*/
fseek(SetupFile, SetupLdrExeHeaderOffset, SEEK_SET);
if (sizeof(TSetupLdrExeHeader) != fread(&ExeHeader, 1, sizeof(ExeHeader), SetupFile))
{
goto exit;
}
LETOH32(ExeHeader.ID);
LETOH32(ExeHeader.OffsetTableOffset);
LETOH32(ExeHeader.NotOffsetTableOffset);
if ((ExeHeader.ID != SetupLdrExeHeaderID) ||
(ExeHeader.OffsetTableOffset != ~ExeHeader.NotOffsetTableOffset) ||
(ExeHeader.OffsetTableOffset + sizeof(OffsetTable) > SizeOfFile))
{
#if VERBOSE
synce_trace("Not a valid Inno Setup file");
#endif
goto exit;
}
/*
Handle OffsetTable
*/
fseek(SetupFile, ExeHeader.OffsetTableOffset, SEEK_SET);
if (sizeof(TSetupLdrOffsetTable) != fread(OffsetTable, 1, sizeof(TSetupLdrOffsetTable), SetupFile))
{
goto exit;
}
if (0 != memcmp(OffsetTable->ID, SetupLdrOffsetTableID, 12))
{
synce_trace("Not a valid Inno Setup file");
goto exit;
}
/* TODO: convert more */
LETOH32(OffsetTable->Offset0);
LETOH32(OffsetTable->Offset1);
#if VERBOSE
synce_trace("OffsetTable.Offset0 = %08x", OffsetTable->Offset0);
synce_trace("OffsetTable.Offset1 = %08x", OffsetTable->Offset1);
#endif
success = true;
exit:
return success;
}/*}}}*/
static bool orange_get_inno_setup_data(/*{{{*/
FILE* SetupFile,
TSetupHeader* SetupHeader,
TSetupFileEntry** FileEntries,
TSetupFileLocationEntry*** FileLocationEntries)
{
bool success = false;
int version[3];
TDeflateBlockReadData Data;
TSetupLangOptions LangOptions;
TSetupRunEntry* RunEntries = NULL;
char TestID[SETUP_ID_SIZE];
int i;
if (sizeof(TestID) != fread(TestID, 1, sizeof(TestID), SetupFile))
{
goto exit;
}
if (3 != sscanf(TestID, SETUP_ID_FORMAT, version+0, version+1, version+2))
{
goto exit;
}
synce_trace("Inno Setup version: %i.%i.%i", version[0], version[1], version[2]);
#if VERBOSE
synce_trace("Offset: %08x", ftell(SetupFile));
#endif
if (!InflateBlockReadBegin(SetupFile, &Data))
{
synce_error("InflateBlockReadBegin failed");
goto exit;
}
SEInflateBlockRead(&Data, SetupHeader, SETUP_HEADER_SIZE, SetupHeaderStrings);
LETOH32(SetupHeader->NumTypeEntries);
LETOH32(SetupHeader->NumComponentEntries);
LETOH32(SetupHeader->NumTaskEntries);
LETOH32(SetupHeader->NumDirEntries);
LETOH32(SetupHeader->NumFileEntries);
LETOH32(SetupHeader->NumIconEntries);
LETOH32(SetupHeader->NumIniEntries);
LETOH32(SetupHeader->NumRegistryEntries);
LETOH32(SetupHeader->NumInstallDeleteEntries);
LETOH32(SetupHeader->NumUninstallDeleteEntries);
LETOH32(SetupHeader->NumRunEntries);
LETOH32(SetupHeader->NumUninstallRunEntries);
#if VERBOSE
synce_trace("NumFileEntries: %i", SetupHeader->NumFileEntries);
#endif
SEInflateBlockRead(&Data, &LangOptions, sizeof(TSetupLangOptions), SetupLangOptionsStrings);
SkipFile(&Data); /* WizardImage */
SkipFile(&Data); /* WizardSmallImage */
/* TODO: SkipFile() if bzip is used */
/* can't handle these yet */
assert(0 == SetupHeader->NumTypeEntries);
assert(0 == SetupHeader->NumComponentEntries);
assert(0 == SetupHeader->NumTaskEntries);
assert(0 == SetupHeader->NumDirEntries);
#if VERBOSE
synce_trace("Reading file entries");
#endif
*FileEntries = calloc(SetupHeader->NumFileEntries, sizeof(TSetupFileEntry));
ReadEntries(&Data, seFile, SetupHeader->NumFileEntries, sizeof(TSetupFileEntry), *FileEntries);
/* can't handle these yet */
assert(0 == SetupHeader->NumIconEntries);
assert(0 == SetupHeader->NumIniEntries);
assert(0 == SetupHeader->NumRegistryEntries);
assert(0 == SetupHeader->NumInstallDeleteEntries);
assert(0 == SetupHeader->NumUninstallDeleteEntries);
RunEntries = calloc(SetupHeader->NumRunEntries, sizeof(TSetupRunEntry));
ReadEntries(&Data, seRun, SetupHeader->NumRunEntries, sizeof(TSetupRunEntry), RunEntries);
assert(0 == SetupHeader->NumUninstallRunEntries);
InflateBlockReadEnd(&Data);
/*
File location entries
*/
if (!InflateBlockReadBegin(SetupFile, &Data))
{
synce_error("InflateBlockReadBegin failed");
goto exit;
}
#if VERBOSE
synce_trace("Reading file location entries");
#endif
*FileLocationEntries = calloc(SetupHeader->NumFileLocationEntries, sizeof(TSetupFileLocationEntry*));
for (i = 0; i < SetupHeader->NumFileLocationEntries; i++)
{
TSetupFileLocationEntry* entry = malloc(SETUP_FILE_LOCATION_ENTRY_SIZE);
InflateBlockRead(&Data, entry, SETUP_FILE_LOCATION_ENTRY_SIZE);
DUMP("FileLocationEntry", entry, SETUP_FILE_LOCATION_ENTRY_SIZE);
LETOH32(entry->FirstDisk);
LETOH32(entry->LastDisk);
LETOH32(entry->StartOffset);
LETOH32(entry->OriginalSize);
LETOH32(entry->CompressedSize);
LETOH32(entry->Adler);
(*FileLocationEntries)[i] = entry;
}
InflateBlockReadEnd(&Data);
success = true;
exit:
FreeEntries(seRun, SetupHeader->NumRunEntries, sizeof(TSetupRunEntry), RunEntries);
return success;
}/*}}}*/
bool orange_extract_inno(/*{{{*/
const char* input_filename,
const char* output_directory)
{
bool success = false;
FILE* SetupFile = fopen(input_filename, "r");
int i;
TSetupLdrOffsetTable OffsetTable;
TSetupHeader SetupHeader;
TSetupFileEntry* FileEntries = NULL;
TSetupFileLocationEntry** FileLocationEntries = NULL;
if (!SetupFile)
{
synce_error("Failed to open file for reading: '%s'", input_filename);
goto exit;
}
if (!orange_get_inno_offset_table(SetupFile, &OffsetTable))
{
/* Not an Inno Setup executable */
goto exit;
}
/*
Setup data
*/
fseek(SetupFile, OffsetTable.Offset0, SEEK_SET);
if (!orange_get_inno_setup_data(SetupFile,
&SetupHeader, &FileEntries, &FileLocationEntries))
{
goto exit;
}
for (i = 0; i < SetupHeader.NumFileEntries; i++)
{
int l = FileEntries[i].LocationEntry;
#if VERBOSE
synce_trace("%08x %08x %08x %s",
FileLocationEntries[l]->StartOffset,
FileLocationEntries[l]->OriginalSize,
FileLocationEntries[l]->CompressedSize,
FileEntries[i].DestName);
#endif
if (FileEntries[i].DestName[0])
{
char filename[256];
char* p;
/* Change backslash to forward slash */
for (p = FileEntries[i].DestName; *p != '\0'; p++)
if (*p == '\\')
*p = '/';
/* Create directory */
snprintf(filename, sizeof(filename), "%s/%s", output_directory, FileEntries[i].DestName);
p = strrchr(filename, '/');
if (p)
*p = '\0';
if (!orange_make_sure_directory_exists(filename))
goto exit;
/* Create full path */
snprintf(filename, sizeof(filename), "%s/%s", output_directory, FileEntries[i].DestName);
/* Extract */
FileLocationEntries[l]->StartOffset += OffsetTable.Offset1;
orange_inno_decompress(SetupFile, FileLocationEntries[l], filename);
}
}
success = true;
exit:
FreeEntries(seFile, SetupHeader.NumFileEntries, sizeof(TSetupFileEntry), FileEntries);
if (FileLocationEntries)
{
for (i = 0; i < SetupHeader.NumFileLocationEntries; i++)
{
FREE(FileLocationEntries[i]);
}
free(FileLocationEntries);
}
FCLOSE(SetupFile);
return success;
}/*}}}*/
|