Changeset 1438 for trunk/dll/literal.c


Ignore:
Timestamp:
Jun 28, 2009, 10:47:00 PM (16 years ago)
Author:
Gregg Young
Message:

Improved drivebar changes; Added AddBackslashToPath() to remove repeatative code. replaced "
" with PCSZ variable; ANY_OBJ added the DosAlloc... (experimental)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/literal.c

    r1416 r1438  
    3535#include "wrappers.h"                   // xmalloc
    3636#include "fortify.h"
     37#include "init.h"                       // Strings
    3738
    3839static PSZ pszSrcFile = __FILE__;
     
    321322        }
    322323        else {
    323           sprintf(pchOut, "\\x%02x", (UCHAR)*pchIn);
     324          sprintf(pchOut, "%sx%02x", PCSZ_BACKSLASH, (UCHAR)*pchIn);
    324325          pchOut += 4;
    325326        }
Note: See TracChangeset for help on using the changeset viewer.