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

Check return value of smb_create() in smb_open_dir()

Resolves CID 515657
parent 855fb1be
No related branches found
No related tags found
No related merge requests found
......@@ -624,9 +624,10 @@ int smb_open_dir(scfg_t* cfg, smb_t* smb, int dirnum)
smb->status.attr = SMB_FILE_DIRECTORY;
if(cfg->dir[dirnum]->misc & DIR_NOHASH)
smb->status.attr |= SMB_NOHASH;
smb_create(smb);
if((retval = smb_create(smb)) != SMB_SUCCESS)
smb_close(smb);
}
return SMB_SUCCESS;
return retval;
}
int get_lang_count(scfg_t* cfg)
......
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