1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-28 01:41:48 +03:00

tests: Fixed some cppcheck warnings.

This commit is contained in:
Oliver Stöneberg
2011-05-09 09:27:39 -07:00
committed by Andreas Schneider
parent 7f0761885c
commit e3311d03db
2 changed files with 4 additions and 2 deletions

View File

@ -75,12 +75,12 @@ int benchmarks_ping_latency (const char *host, float *average){
}
if(!found)
goto parseerror;
fclose(fd);
pclose(fd);
return 0;
parseerror:
fprintf(stderr,"Parse error : couldn't locate average in %s",line);
fclose(fd);
pclose(fd);
return -1;
}