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:
authorAndrea Weikert <elubie@gmx.net>2005-11-02 10:16:00 +0300
committerAndrea Weikert <elubie@gmx.net>2005-11-02 10:16:00 +0300
commit3c5b54ba6b93b0b16d456f89fa50cecfd3647ff6 (patch)
treeebc310b52dcffe711b59e96dfccf2abeafde9b6e /source/blender/blenlib
parent48dbe3a5fc068b0f39f290230e5f4d7d5c46af1f (diff)
disabled my previous fix, because of a reported crash when constant strings are passed so testbuilds can go on. Will provide propper fix later
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/util.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/util.c b/source/blender/blenlib/intern/util.c
index 29d140c5835..4ef2e15c541 100644
--- a/source/blender/blenlib/intern/util.c
+++ b/source/blender/blenlib/intern/util.c
@@ -728,9 +728,12 @@ void BLI_make_file_string(char *relabase, char *string, char *dir, char *file)
/* Push all slashes to the system preferred direction */
BLI_clean(string);
/* also for all the other dirs where we changed the slashes */
+ /* disabled because static strings passed in caused crash */
+ /*
BLI_clean(relabase);
BLI_clean(dir);
BLI_clean(file);
+ */
}
int BLI_testextensie(char *str, char *ext)