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

Bugfix: returned success (true) even if smb_addmsghdr() failed.

Bugfix: didn't free data fields if smb_addmsghdr() failed.
parent aa2314cd
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,7 @@ bool sbbs_t::qwktomsg(FILE *qwk_fp, char *hdrblk, char fromhub, uint subnum
ushort xlat;
long l,bodylen,taillen,length;
bool header_cont=false;
bool success=true;
ulong crc,block,blocks;
smbmsg_t msg;
smbmsg_t remsg;
......@@ -508,13 +509,16 @@ bool sbbs_t::qwktomsg(FILE *qwk_fp, char *hdrblk, char fromhub, uint subnum
}
fflush(smb.sdt_fp);
if((i=smb_addmsghdr(&smb,&msg,storage))!=0) // calls smb_unlocksmbhdr()
errormsg(WHERE,ERR_WRITE,smb.file,i);
if((i=smb_addmsghdr(&smb,&msg,storage))!=SMB_SUCCESS) { // calls smb_unlocksmbhdr()
errormsg(WHERE,ERR_WRITE,smb.file,i,smb.last_error);
smb_freemsg_dfields(&smb,&msg,1);
success=false;
}
smb_freemsgmem(&msg);
LFREE(body);
LFREE(tail);
return(true);
return(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