Changeset 464

Show
Ignore:
Timestamp:
Wed May 21 08:29:47 2008
Author:
giovannibajo
Message:

Fix a C-syntax bug introduced with the last merge

Files:

Legend:

Unmodified
Added
Removed
Modified
  • branches/crypt/source/common/launch.c

    r461 r464  
    651 651                 {  
    652 652                         unsigned char *modbuf = extract(ptoc);  
      653                         PyObject *mods;  
    653 654  
    654 655                         VS("extracted ");  
     
    656 657                          * string directly pointing at the marshalled code.  
    657 658                          */  
    658                           PyObject *mods = PI_PyString_FromStringAndSize(modbuf + 8,  
      659                         mods = PI_PyString_FromStringAndSize(modbuf + 8,  
    658 659                                 ntohl(ptoc->ulen) - 8);  
    659 660