Ignore:
Timestamp:
Mar 8, 2002, 12:01:03 PM (23 years ago)
Author:
sandervl
Message:

PH: Wine resync + OS2 integration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shell32/shell.c

    r7085 r8048  
    1 /* $Id: shell.c,v 1.2 2001-10-17 09:15:20 phaller Exp $ */
     1/* $Id: shell.c,v 1.3 2002-03-08 11:01:00 sandervl Exp $ */
    22/*
    33 *                              Shell Library Functions
     
    400400    /* First try to execute lpFile with lpParameters directly */
    401401    strcpy(cmd,lpFile);
    402     strcat(cmd,lpParameters ? lpParameters : "");
     402    if (lpParameters) {
     403        strcat(cmd, " " );
     404        strcat(cmd,lpParameters );
     405    }
    403406
    404407    retval = WinExec16( cmd, iShowCmd );
Note: See TracChangeset for help on using the changeset viewer.