Changeset 545


Ignore:
Timestamp:
11/13/2008 2:30:26 PM (3 years ago)
Author:
lowjoel
Message:

-The release binary is now exactly 160kb, increase the offset
-Fixed a File not Found error when .NET isn't installed

Location:
branches/eraser6/Installer/Bootstrapper
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eraser6/Installer/Bootstrapper/Bootstrapper.cpp

    r544 r545  
    274274                (L"SOFTWARE\\Wow6432Node\\Microsoft\\NET Framework Setup\\NDP\\" + keys[i]).c_str(), 
    275275                0, KEY_READ, &key); 
     276 
     277            if (result == ERROR_FILE_NOT_FOUND) 
     278                continue; 
    276279        } 
    277280 
  • branches/eraser6/Installer/Bootstrapper/Bootstrapper.h

    r544 r545  
    132132 
    133133/// The offset where the package data is stored. 
    134 const unsigned DataOffset = 160 * 1024; 
     134const unsigned DataOffset = 192 * 1024; 
    135135 
    136136/// Formats the system error code using FormatMessage, returning the message as 
Note: See TracChangeset for help on using the changeset viewer.