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>2011-11-13 19:17:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-13 19:17:24 +0400
commit8b323417751ecc051e445a8e69188cf00afa3c4e (patch)
tree6e0d2af2f49f648d821da828fc08bd3943ce1cf2 /source/blender/blenkernel/intern/ocean.c
parentea38cb2e5eb84fbc6e15e64c69589c691a5d240a (diff)
ensure that the path and directory are joined correctly for ocean cache (assumed path ended with a '/')
Diffstat (limited to 'source/blender/blenkernel/intern/ocean.c')
-rw-r--r--source/blender/blenkernel/intern/ocean.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/source/blender/blenkernel/intern/ocean.c b/source/blender/blenkernel/intern/ocean.c
index 24d7701dcfc..e050ff89f86 100644
--- a/source/blender/blenkernel/intern/ocean.c
+++ b/source/blender/blenkernel/intern/ocean.c
@@ -46,6 +46,7 @@
#include "BLI_rand.h"
#include "BLI_string.h"
#include "BLI_threads.h"
+#include "BLI_path_util.h"
#include "BLI_utildefines.h"
#include "IMB_imbuf.h"
@@ -994,26 +995,27 @@ void BKE_free_ocean(struct Ocean *oc)
#define CACHE_TYPE_FOAM 2
#define CACHE_TYPE_NORMAL 3
-static void cache_filename(char *string, char *path, int frame, int type)
+static void cache_filename(char *string, const char *path, int frame, int type)
{
- char *cachepath=NULL;
+ char cachepath[FILE_MAX];
+ const char *fname;
switch(type) {
case CACHE_TYPE_FOAM:
- cachepath = BLI_strdupcat(path, "foam_");
+ fname= "foam_";
break;
case CACHE_TYPE_NORMAL:
- cachepath = BLI_strdupcat(path, "normal_");
+ fname= "normal_";
break;
case CACHE_TYPE_DISPLACE:
default:
- cachepath = BLI_strdupcat(path, "disp_");
+ fname= "disp_";
break;
}
-
+
+ BLI_join_dirfile(cachepath, sizeof(cachepath), path, fname);
+
BKE_makepicstring(string, cachepath, frame, R_OPENEXR, 1, TRUE);
-
- MEM_freeN(cachepath);
}
void BKE_free_ocean_cache(struct OceanCache *och)