Close only valid handles

LTO-timing^2
ζeh Matt 2 years ago
parent 2014ea40b9
commit 3c8ef8463c
No known key found for this signature in database
GPG Key ID: 18CE582C71A225B0

@ -36,7 +36,11 @@ namespace Platform::File {
public:
ScopedHandle() = default;
ScopedHandle(Handle handle) : mHandle(handle) {}
~ScopedHandle() { close(mHandle); }
~ScopedHandle()
{
if(mHandle != Handle::Invalid)
close(mHandle);
}
operator Handle() const { return mHandle; }
};

Loading…
Cancel
Save