Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-06-23 19:07:20 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-06-23 19:07:20 +0400
commit4596588fe8f61c4138b5edd6760dbabdd04fbb35 (patch)
tree30b9dd15c10520ca12e1828720496ee43943b506 /source/blender/windowmanager/intern/wm_files.c
parent989cca1434419682aa04fa65ced5e69b33ffd3fa (diff)
- avoid divide by zero with node progress
- write_crash_blend() was writing to the original path.
Diffstat (limited to 'source/blender/windowmanager/intern/wm_files.c')
-rw-r--r--source/blender/windowmanager/intern/wm_files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c
index 93fe5e58a43..1357b96fe70 100644
--- a/source/blender/windowmanager/intern/wm_files.c
+++ b/source/blender/windowmanager/intern/wm_files.c
@@ -539,7 +539,7 @@ int write_crash_blend(void)
char path[FILE_MAX];
BLI_strncpy(path, G.sce, sizeof(path));
BLI_replace_extension(path, sizeof(path), "_crash.blend");
- if(BLO_write_file(G.main, G.sce, G.fileflags, NULL, NULL)) {
+ if(BLO_write_file(G.main, path, G.fileflags, NULL, NULL)) {
printf("written: %s\n", path);
return 1;
}