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

Reset import time (to current date/time) in smb_renewfile()

Don't allow smb_removefile() to corrupt a filebase if passed an uninitialized
(not fully load()'d) file_t*. Doesn't fix a bug, just some extra defensive
programming here.

Addressing problems reported by echicken
parent 9d9d2584
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
......@@ -378,6 +378,7 @@ int smb_renewfile(smb_t* smb, smbfile_t* file, int storage, const char* path)
int result;
if((result = smb_removefile(smb, file)) != SMB_SUCCESS)
return result;
file->hdr.when_imported.time = 0; // Reset the import date/time
return smb_addfile(smb, file, storage, file->extdesc, file->metadata, path);
}
......@@ -389,6 +390,12 @@ int smb_removefile(smb_t* smb, smbfile_t* file)
int removed = 0;
char fname[SMB_FILEIDX_NAMELEN + 1] = "";
if(file->total_hfields < 1) {
safe_snprintf(smb->last_error, sizeof(smb->last_error), "%s header has %u fields"
,__FUNCTION__, file->total_hfields);
return SMB_ERR_HDR_FIELD;
}
if(!smb->locked && smb_locksmbhdr(smb) != SMB_SUCCESS)
return SMB_ERR_LOCK;
......
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