Page Menu
Home
Search
Configure Global Search
Log In
Files
F22212
path_util_split_dirstring_2.patch
Public
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Authored By
Lawrence D'Oliveiro (ldo)
Nov 13 2013, 4:42 PM
Size
827 B
Subscribers
None
path_util_split_dirstring_2.patch
View Options
commit 56c8beacabfd576705395c6705dea86b97c97606
Author: Lawrence D'Oliveiro <ldo@geek-central.gen.nz>
Date: Wed Feb 20 04:04:16 2013 +0000
incorrect sizeof expression
diff --git a/source/blender/imbuf/intern/indexer.c b/source/blender/imbuf/intern/indexer.c
index 53b5c1e..e6c6f01 100644
--- a/source/blender/imbuf/intern/indexer.c
+++ b/source/blender/imbuf/intern/indexer.c
@@ -365,7 +365,7 @@ static void get_index_dir(struct anim *anim, char *index_dir)
{
if (!anim->index_dir[0]) {
char fname[FILE_MAXFILE];
- BLI_split_dirfile(anim->name, index_dir, fname, sizeof FILE_MAXDIR, sizeof fname);
+ BLI_split_dirfile(anim->name, index_dir, fname, FILE_MAXDIR, sizeof fname);
BLI_join_dirfile(index_dir, FILE_MAXDIR, index_dir, "BL_proxy");
BLI_join_dirfile(index_dir, FILE_MAXDIR, index_dir, fname);
}
File Metadata
Details
Mime Type
text/x-diff
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
3d/12/0b9e814b84938805f0eb7ab3f79d
Event Timeline
Log In to Comment