Changeset 287

Show
Ignore:
Timestamp:
Tue Sep 5 07:09:56 2006
Author:
giovannibajo
Message:

Fix buffer overrun with deep directory path

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/source/common/launch.c

    r267 r287  
    473 473         int pathlen = 1;  
    474 474         int i;  
    475           char cmd[80];  
      475         char cmd[_MAX_PATH+1+80];  
    475 475         char tmp[_MAX_PATH+1];  
    476 476         PyObject *py_argv;  
  • trunk/doc/CHANGES.txt

    r286 r287  
    13 13    file being linked within the generated executable). This is especially  
    14 14    useful for applications using wxPython.  
      15  + Fix a buffer overrun in the bootloader (which could lead to a crash)  
      16    when the built executable is run from within a deep directory (more than  
      17    70-80 characters in the pathname).  
    15 18  
    16 19