X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_dv%2Ftrgt_dv.cpp;h=a820c3317d1dd56e422799ce2102ef711c8d53e5;hb=4b886acca3929def466b0fb6a948bb5c37029190;hp=8c8c4c5cc0291e8022d5acbe8e3fcd0bd800f524;hpb=bb3d7752024191d641932add1df2add4c34fc83c;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_dv/trgt_dv.cpp b/synfig-core/trunk/src/modules/mod_dv/trgt_dv.cpp index 8c8c4c5..a820c33 100644 --- a/synfig-core/trunk/src/modules/mod_dv/trgt_dv.cpp +++ b/synfig-core/trunk/src/modules/mod_dv/trgt_dv.cpp @@ -37,6 +37,7 @@ #include "trgt_dv.h" #include #include +#include #include #include #include @@ -63,6 +64,7 @@ SYNFIG_TARGET_SET_CVS_ID(dv_trgt,"$Id$"); dv_trgt::dv_trgt(const char *Filename) { + pid=-1; file=NULL; filename=Filename; buffer=NULL; @@ -74,8 +76,11 @@ dv_trgt::dv_trgt(const char *Filename) dv_trgt::~dv_trgt() { - if(file) - pclose(file); + if(file){ + fclose(file); + int status; + waitpid(pid,&status,0); + } file=NULL; delete [] buffer; delete [] color_buffer; @@ -122,8 +127,6 @@ dv_trgt::init() { imagecount=desc.get_frame_start(); - string command; - int p[2]; if (pipe(p)) { @@ -140,12 +143,15 @@ dv_trgt::init() if (pid == 0){ // Child process + // Close pipeout, not needed + close(p[1]); // Dup pipeout to stdin if( dup2( p[0], STDIN_FILENO ) == -1 ){ synfig::error(_("Unable to open pipe to encodedv")); return false; } - + // Close the unneeded pipeout + close(p[0]); // Open filename to stdout FILE* outfile = fopen(filename.c_str(),"wb"); if( outfile == NULL ){