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>2008-04-30 01:43:17 +0400
committerAndrea Weikert <elubie@gmx.net>2008-04-30 01:43:17 +0400
commitb1d841f2c43430f817e04a0b1f57dda2109021e6 (patch)
tree90e6b0695c4c884b9b9e3336c526b1bd12f9e2e0 /source/blender/blenlib/BLI_winstuff.h
parent4be6ef57587d5a40fdfd205a10187788a70c5ba8 (diff)
== bugfix ==
fix for [#6580] invalid file names not handled consistently when saving only affects windows, where invisible file stream could be created if filename contains ':'
Diffstat (limited to 'source/blender/blenlib/BLI_winstuff.h')
-rw-r--r--source/blender/blenlib/BLI_winstuff.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_winstuff.h b/source/blender/blenlib/BLI_winstuff.h
index 54d70626dd5..9c192ba8b09 100644
--- a/source/blender/blenlib/BLI_winstuff.h
+++ b/source/blender/blenlib/BLI_winstuff.h
@@ -110,7 +110,8 @@ void RegisterBlendExtension(char * str);
DIR *opendir (const char *path);
struct dirent *readdir(DIR *dp);
int closedir (DIR *dp);
-void get_default_root(char* root);
+void get_default_root(char *root);
+int check_file_chars(char *filename);
#endif /* __WINSTUFF_H__ */