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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-11-05 17:00:33 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-11-05 17:00:33 +0400
commit856b0f09dcee554a6f55905a49fd0057b16e5105 (patch)
tree67e84fef7b6be56b9369acd640cff0491cba1eb7 /source/blender/imbuf/intern/thumbs.c
parent57ce929adead8af4da41d96e03a48ab5b421166b (diff)
Fix #31310: Thumbnails not generating with non Latin characters
Diffstat (limited to 'source/blender/imbuf/intern/thumbs.c')
-rw-r--r--source/blender/imbuf/intern/thumbs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/thumbs.c b/source/blender/imbuf/intern/thumbs.c
index a3ce332b609..94bb85b49ea 100644
--- a/source/blender/imbuf/intern/thumbs.c
+++ b/source/blender/imbuf/intern/thumbs.c
@@ -436,7 +436,7 @@ ImBuf *IMB_thumb_manage(const char *path, ThumbSize size, ThumbSource source)
struct stat st;
ImBuf *img = NULL;
- if (stat(path, &st)) {
+ if (BLI_stat(path, &st)) {
return NULL;
}
if (!uri_from_filename(path, uri)) {