From 8b323417751ecc051e445a8e69188cf00afa3c4e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 13 Nov 2011 15:17:24 +0000 Subject: ensure that the path and directory are joined correctly for ocean cache (assumed path ended with a '/') --- source/blender/blenkernel/intern/ocean.c | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'source/blender/blenkernel/intern') 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) -- cgit v1.2.3