1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +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 inline bool mcsv1Context::getInterrupted() const
{ {
if (bInterrupted) return bInterrupted && *bInterrupted;
{
return bInterrupted;
}
return false;
} }
inline void mcsv1Context::setUserDataSize(int bytes) inline void mcsv1Context::setUserDataSize(int bytes)