Avoided use of uninitialized variable

This commit is contained in:
Thomas Schmitt 2009-11-20 17:57:34 +00:00
parent f39ff2c2f6
commit 9b28a9b272
2 changed files with 2 additions and 2 deletions

View File

@ -637,7 +637,7 @@ return: <0 = error , 0 = idle , 1 = did some work
*/
{
double buffer_space;
int can_read,can_write,ret,did_work= 0,idx,sod,eop_is_near,eop_idx;
int can_read,can_write= 0,ret,did_work= 0,idx,sod,eop_is_near,eop_idx;
buffer_space= Cdrfifo_tell_buffer_space(o,0);
if(o->dest_fd>=0) if(FD_ISSET((o->dest_fd),wts)) {

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2009.11.20.134952"
#define Cdrskin_timestamP "2009.11.20.175854"