Fixed: Proper freeing memory after SWF close

This commit is contained in:
Jindra Petřík
2025-05-18 22:00:05 +02:00
parent bd755cb857
commit e3cbe52243
8 changed files with 51 additions and 10 deletions

View File

@@ -6239,4 +6239,12 @@ public final class SWF implements SWFContainerItem, Timelined, Openable {
public SWF getSwf() {
return this;
}
/**
* Checks whether SWF was freed
* @return True if destroyed
*/
public boolean isDestroyed() {
return destroyed;
}
}