aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/libssh_scp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/libssh_scp.c b/examples/libssh_scp.c
index 9027ef99..99281db8 100644
--- a/examples/libssh_scp.c
+++ b/examples/libssh_scp.c
@@ -192,7 +192,10 @@ static int do_copy(struct location *src, struct location *dest, int recursive){
fprintf(stderr, "Invalid file pointer, error: %s\n", strerror(errno));
return -1;
}
- fstat(fd,&s);
+ r = fstat(fd, &s);
+ if (r < 0) {
+ return -1;
+ }
size=s.st_size;
mode = s.st_mode & ~S_IFMT;
filename=ssh_basename(src->path);