Skip to content
Snippets Groups Projects
Commit 1112179c authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Place error description in smb->last_error in smb_freemsghdr()

A couple of failure conditions from this function (e.g. SMB_ERR_HDR_LEN)
would not write an error descripton to smb->last_error. Now fixed.

Noticed this when debugging echicken's reported FileBase.renew() issue.
parent e90e8f82
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
......@@ -308,14 +308,18 @@ int smb_freemsghdr(smb_t* smb, off_t offset, uint length)
}
clearerr(smb->sha_fp);
blocks = smb_hdrblocks(length);
if(blocks < 1)
if(blocks < 1) {
safe_snprintf(smb->last_error, sizeof(smb->last_error), "%s invalid header length: %u", __FUNCTION__, length);
return SMB_ERR_HDR_LEN;
}
sha_offset = offset/SHD_BLOCK_LEN;
if(filelength(fileno(smb->sha_fp)) <= (sha_offset + blocks)) {
if(chsize(fileno(smb->sha_fp), (int)sha_offset) == 0) {
if(chsize(fileno(smb->shd_fp), (int)(smb->status.header_offset + offset)) != 0)
if(chsize(fileno(smb->shd_fp), (int)(smb->status.header_offset + offset)) != 0) {
safe_snprintf(smb->last_error, sizeof(smb->last_error), "%s header truncation failure", __FUNCTION__);
return SMB_ERR_TRUNCATE;
}
return SMB_SUCCESS;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment