1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-05 16:15:50 +03:00

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

This commit is contained in:
Leonid Fedorov
2021-08-19 18:00:27 +03:00
committed by GitHub
parent f88914df28
commit e79c9ef1a3

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)