1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Fix recursive call that could cause infinite loop.

Introduced by an earlier commit.
This commit is contained in:
Sandu Liviu Catalin 2021-09-06 00:35:47 +03:00
parent 608c444694
commit 4cefc96faf

View File

@ -178,7 +178,7 @@ public:
*/ */
Buffer & Valid() const Buffer & Valid() const
{ {
Valid(); Validate();
// Return the buffer // Return the buffer
return *m_Buffer; return *m_Buffer;
} }