1
0
mirror of https://github.com/XProger/OpenLara.git synced 2025-08-15 01:24:35 +02:00

#138 fix memory leak

This commit is contained in:
XProger
2018-11-11 04:01:11 +03:00
parent b296d4f6d8
commit 20cdab5153

View File

@@ -2586,8 +2586,10 @@ namespace TR {
readSAT(sad); readSAT(sad);
readSAT(spr); readSAT(spr);
readSAT(snd); readSAT(snd);
if (cin) if (cin) {
readCIN(*cin); readCIN(*cin);
delete cin;
}
readSAT(stream); // sat readSAT(stream); // sat
return; return;
} }