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:
authorMartin Poirier <theeth@yahoo.com>2009-05-13 03:41:46 +0400
committerMartin Poirier <theeth@yahoo.com>2009-05-13 03:41:46 +0400
commitf790744faf3ee8e3d65afa0cdc65f7efc24b87ab (patch)
tree63549701ef04fbe840ae9d3c8653b6d9b4b50312
parenta70440d918b13b62e7a6695f562089bd5d4b613a (diff)
Fix crash when missing int argument for -s -e and -j.
-rw-r--r--source/creator/creator.c21
1 files changed, 14 insertions, 7 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 2b542b13c97..a39d2916a84 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -662,7 +662,8 @@ int main(int argc, char **argv)
a++;
if (G.scene) {
if (a < argc) {
- int frame= MIN2(MAXFRAME, MAX2(1, atoi(argv[a])));
+ int frame = atoi(argv[a]);
+ frame = MIN2(MAXFRAME, MAX2(1, frame));
Render *re= RE_NewRender(G.scene->id.name);
#ifndef DISABLE_PYTHON
if (G.f & G_DOSCRIPTLINKS)
@@ -701,8 +702,10 @@ int main(int argc, char **argv)
case 's':
a++;
if(G.scene) {
- int frame= MIN2(MAXFRAME, MAX2(1, atoi(argv[a])));
- if (a < argc) (G.scene->r.sfra) = frame;
+ if (a < argc) {
+ int frame = atoi(argv[a]);
+ (G.scene->r.sfra) = MIN2(MAXFRAME, MAX2(1, frame));
+ }
} else {
printf("\nError: no blend loaded. cannot use '-s'.\n");
}
@@ -710,8 +713,10 @@ int main(int argc, char **argv)
case 'e':
a++;
if(G.scene) {
- int frame= MIN2(MAXFRAME, MAX2(1, atoi(argv[a])));
- if (a < argc) (G.scene->r.efra) = frame;
+ if (a < argc) {
+ int frame = atoi(argv[a]);
+ (G.scene->r.efra) = MIN2(MAXFRAME, MAX2(1, frame));
+ }
} else {
printf("\nError: no blend loaded. cannot use '-e'.\n");
}
@@ -719,8 +724,10 @@ int main(int argc, char **argv)
case 'j':
a++;
if(G.scene) {
- int fstep= MIN2(MAXFRAME, MAX2(1, atoi(argv[a])));
- if (a < argc) (G.scene->frame_step) = fstep;
+ if (a < argc) {
+ int frame = atoi(argv[a]);
+ (G.scene->frame_step) = MIN2(MAXFRAME, MAX2(1, frame));
+ }
} else {
printf("\nError: no blend loaded. cannot use '-j'.\n");
}