HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Double free of type - where do they come from?

08-10-2008, 02:20 PM#1
Vestras
Title.
08-10-2008, 02:28 PM#2
dorreen
If you remove struct or group or something twice.
08-10-2008, 02:35 PM#3
DioD
You code contains logical errors.
08-10-2008, 02:36 PM#4
Anitarf
It's a warning that your code is poorly written, and might bug. It happens when you try to destroy something that was already destroyed, which is a big no-no when it comes to structs, because they can get recycled after they're destroyed so destroying them again would actualy destroy the new struct that recycled the old one's ID.