From f4205498a9854a5487a6b3531798690470f4bdcd Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Wed, 1 Dec 2010 15:58:45 +0000 Subject: Bugfix #24890 Particle cache reading: crash when loading .blend on a different endian system, code was dumping arrays in .blend without DNA. General warning for devs: avoid generic write_data and dynamic arrays in DNA. --- source/blender/blenloader/intern/readfile.c | 19 +++++++++++++++++-- source/blender/makesdna/DNA_boid_types.h | 4 ++++ 2 files changed, 21 insertions(+), 2 deletions(-) (limited to 'source') diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index bcb09ca52c8..7861e771f8b 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -2931,9 +2931,24 @@ static void direct_link_pointcache(FileData *fd, PointCache *cache) if(pm->index_array) pm->index_array = newdataadr(fd, pm->index_array); + /* writedata saved array of ints */ + if(pm->index_array && (fd->flags & FD_FLAGS_SWITCH_ENDIAN)) { + for(i=0; itotpoint; i++) + SWITCH_INT(pm->index_array[i]); + } + for(i=0; idata[i] && pm->data_types & (1<data[i] = newdataadr(fd, pm->data[i]); + pm->data[i] = newdataadr(fd, pm->data[i]); + + /* XXX the cache saves structs and data without DNA */ + if(pm->data[i] && (fd->flags & FD_FLAGS_SWITCH_ENDIAN)) { + int j, tot= (BKE_ptcache_data_size (i) * pm->totpoint)/4; /* data_size returns bytes */ + int *poin= pm->data[i]; + + /* XXX fails for boid struct, it has 2 shorts */ + for(j= 0; j