1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Fixed fix for leak

This commit is contained in:
Brian Fiete 2020-04-28 10:11:57 -07:00
parent cd96114490
commit 5515a1fd72

View file

@ -1018,7 +1018,7 @@ namespace System
static char8[] sEmtpyBuf = new char8[0] ~ delete _;
//part of the private stringbuffer
private char8[] _cbuf ~ delete _;
private char8[] _cbuf ~ if (_cbuf.Count > 0) delete _;
private int32 mBufSize;
private bool _NaN;