1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

Replace valid use of exit by _exit, patch by Víctor Paesa, wzrlpy arsystel com.

Originally committed as revision 8591 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Víctor Paesa
2007-04-01 17:20:23 +00:00
committed by Diego Biurrun
parent 2de4f9eb47
commit f321635a6e

View File

@@ -81,7 +81,7 @@ static rwpipe *rwpipe_open( int argc, char *argv[] )
close( output[ 1 ] );
execl("/bin/sh", "sh", "-c", command, (char*)NULL );
exit( 255 );
_exit( 255 );
}
else
{