Skip to content
Snippets Groups Projects
Commit 800b53e5 authored by rswindell's avatar rswindell
Browse files

Use smb_fgetlength() instead of filelenth(fileno()).

parent 07ffa797
No related branches found
No related tags found
No related merge requests found
......@@ -1151,7 +1151,7 @@ int DLLCALL smb_open_sub(scfg_t* cfg, smb_t* smb, unsigned int subnum)
}
smb->retry_time = cfg->smb_retry_time;
if((retval = smb_open(smb)) == SMB_SUCCESS) {
if(filelength(fileno(smb->shd_fp)) < sizeof(smbhdr_t) + sizeof(smb->status)) {
if(smb_fgetlength(smb->shd_fp) < sizeof(smbhdr_t) + sizeof(smb->status)) {
if((retval = smb_create(smb)) != SMB_SUCCESS)
smb_close(smb);
}
......
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