Ignore:
Timestamp:
Oct 7, 2009, 11:30:45 PM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

corelib: QProcess: spawnpve() is not necessary, spawnve() is enough since we search for the exe in PATH on our own now.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/corelib/io/qprocess_os2.cpp

    r215 r216  
    903903
    904904        // finally, start the thing
    905         pid = spawnvpe(mode, fullProgramName, argv, envv);
     905        pid = spawnve(mode, fullProgramName, argv, envv);
    906906
    907907        if (prependedLibPath) {
Note: See TracChangeset for help on using the changeset viewer.