Export to GitHub

iperf - issue #73

tempfile remained in /tmp


Posted on May 25, 2013 by Happy Wombat

There is a small defect in iperf_api.c in iperf-3.0b5 version. After invoke mkstemp, u guys forgot to invoke unlink and here i offer an example.

/* unlink temp file otherwise it would be remained in /tmp */ 
if(0 != unlink(template)) {         
    i_errno = IECREATESTREAM;   /* here is not quite right */   
    return NULL; 
} 

Comment #1

Posted on May 25, 2013 by Happy Bear

Thanks; fixed now.

Comment #2

Posted on May 25, 2013 by Happy Wombat

u are welcome.

Status: Fixed

Labels:
Type-Defect Priority-Medium