Alembic: shortened CacheFile.filepath to 1024 bytes again

As per discussion on 3128600a8a
This commit is contained in:
Sybren A. Stüvel 2017-04-26 10:40:54 +02:00
parent 268cb5fbd3
commit edc9f8b766
1 changed files with 3 additions and 1 deletions

View File

@ -47,6 +47,8 @@ enum {
CACHEFILE_KEYFRAME_DRAWN = (1 << 0),
};
/* Representation of an object's path inside the Alembic file.
* Note that this is not a file path. */
typedef struct AlembicObjectPath {
struct AlembicObjectPath *next, *prev;
@ -64,7 +66,7 @@ typedef struct CacheFile {
* CacheFile. */
ListBase object_paths;
char filepath[4096]; /* 4096 = PATH_MAX */
char filepath[1024]; /* 1024 = FILE_MAX */
char is_sequence;
char forward_axis;