diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-06-10 23:39:04 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-06-10 23:40:35 +0200 |
commit | 6cd084a3b5129d9ab8db3e5bc0f094943d7eef89 (patch) | |
tree | 26d32ff78ce1a9897cee17b50196e7c401959be7 /lib/tftp.c | |
parent | 72c7c1d64e101675520387c0d758b63f71d4c48a (diff) | |
download | curl-6cd084a3b5129d9ab8db3e5bc0f094943d7eef89.tar.gz |
Curl_pgrsDone: return int and acknowledge return code
Since Curl_pgrsDone() itself calls Curl_pgrsUpdate() which may return an
abort instruction or similar we need to return that info back and
subsequently properly handle return codes from Curl_pgrsDone() where
used.
(Spotted by a Coverity scan)
Diffstat (limited to 'lib/tftp.c')
-rw-r--r-- | lib/tftp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/tftp.c b/lib/tftp.c index 85404de8b..7202b94d3 100644 --- a/lib/tftp.c +++ b/lib/tftp.c @@ -1036,7 +1036,8 @@ static CURLcode tftp_done(struct connectdata *conn, CURLcode status, (void)status; /* unused */ (void)premature; /* not used */ - Curl_pgrsDone(conn); + if(Curl_pgrsDone(conn)) + return CURLE_ABORTED_BY_CALLBACK; /* If we have encountered an error */ code = tftp_translate_code(state->error); |