You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Poco::RotateBySizeStrategy(UInt64 n) use 64bit value.
But Poco::FileChannel::setRotation use 32bit value.
int n = 0; // 32bit
pStrategy = new RotateBySizeStrategy(n*1024); // overflow
rotation property can't specify over 2GB value.
Poco::RotateBySizeStrategy(UInt64 n) use 64bit value.
But Poco::FileChannel::setRotation use 32bit value.
int n = 0; // 32bit
pStrategy = new RotateBySizeStrategy(n*1024); // overflow