fixed file saving bug

master
Allen Webster 2016-11-04 23:55:07 -04:00
parent e8405a5c04
commit 2ec3b7348b
1 changed files with 5 additions and 3 deletions

View File

@ -1143,6 +1143,7 @@ DOC_RETURN(This call returns non-zero on success.)
Editing_File *file = imp_get_file(cmd, buffer);
if (file){
if (file_get_sync(file) != DirtyState_UpToDate){
result = true;
Partition *part = &models->mem.part;
@ -1151,6 +1152,7 @@ DOC_RETURN(This call returns non-zero on success.)
save_file_to_name(system, &models->mem, file, name.str);
end_temp_memory(temp);
}
}
return(result);
}