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:
Diffstat (limited to 'source/blender/radiosity/intern/source/radio.c')
-rw-r--r--source/blender/radiosity/intern/source/radio.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/source/blender/radiosity/intern/source/radio.c b/source/blender/radiosity/intern/source/radio.c
index 6426592244a..8d08632aedb 100644
--- a/source/blender/radiosity/intern/source/radio.c
+++ b/source/blender/radiosity/intern/source/radio.c
@@ -87,6 +87,7 @@
#include "DNA_scene_types.h"
#include "DNA_screen_types.h"
+#include "BKE_customdata.h"
#include "BKE_global.h"
#include "BKE_main.h"
@@ -144,13 +145,13 @@ void freeAllRad()
RG.facebase= 0;
}
- if(RG.mfdatanodes) {
+ if(RG.mfdata) {
+ CustomData_free(RG.mfdata, RG.mfdatatot);
+ MEM_freeN(RG.mfdata);
MEM_freeN(RG.mfdatanodes);
RG.mfdatanodes= NULL;
- if(RG.tface) {
- MEM_freeN(RG.tface);
- RG.tface= NULL;
- }
+ RG.mfdata= NULL;
+ RG.mfdatatot= 0;
}
RG.totelem= RG.totpatch= RG.totvert= RG.totface= RG.totlamp= RG.totmat= 0;
}