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:
authorDaniel Dunbar <daniel@zuster.org>2004-04-25 19:12:45 +0400
committerDaniel Dunbar <daniel@zuster.org>2004-04-25 19:12:45 +0400
commitf331fc8fbbae05530fe0d28b510a5c0deeb03968 (patch)
tree31575019c21f2b5d6be8dafad43222b4399a38f7 /source/blender/src/filesel.c
parent2d24298b91f895f8f894591c0a7c9b857213be94 (diff)
- add comment in filesel.c to note where memory from some BLO_blendhandle
functions is going
Diffstat (limited to 'source/blender/src/filesel.c')
-rw-r--r--source/blender/src/filesel.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/src/filesel.c b/source/blender/src/filesel.c
index 88b7f793c2c..ae7a8e66d9c 100644
--- a/source/blender/src/filesel.c
+++ b/source/blender/src/filesel.c
@@ -2304,6 +2304,9 @@ static void library_to_filelist(SpaceFile *sfile)
}
idcode= groupname_to_code(group);
+
+ // memory for strings is passed into filelist[i].relname
+ // and free'd in freefilelist
if (idcode) {
names= BLO_blendhandle_get_datablock_names(sfile->libfiledata, idcode);
} else {