1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

One more bool* to bool cast bug (#2097)

This commit is contained in:
Leonid Fedorov
2021-08-18 23:56:57 +03:00
committed by GitHub
parent 98473a45cc
commit 517e793843

View File

@ -860,12 +860,7 @@ inline void mcsv1Context::setInterrupted(bool* interrupted)
inline bool mcsv1Context::getInterrupted() const
{
if (bInterrupted)
{
return bInterrupted;
}
return false;
return bInterrupted && *bInterrupted;
}
inline void mcsv1Context::setUserDataSize(int bytes)