Ticket #46549: dont-dup2-stderr-to-avoid-crash.patch

File dont-dup2-stderr-to-avoid-crash.patch, 372 bytes (added by RJVB (René Bertin), 9 years ago)
  • gstpluginloader.c

    old new  
    537537
    538538    /* Dup stderr down to stdout so things that plugins print are visible,
    539539     * but don't care if it fails */
    540     dup2 (2, 1);
     540    //dup2 (2, 1);
    541541  }
    542542#else
    543543  /* FIXME: Use DuplicateHandle and friends on win32 */