1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0033552: Foundation Classes - NCollection_BaseMap move ctor clears wrong pointer

Replaced correct class member to clear
This commit is contained in:
Xu Zhongxing 2023-12-13 14:41:18 +08:00 committed by vglukhik
parent 6ef56849a5
commit 60792f26f0

View File

@ -178,7 +178,7 @@ public:
isDouble(theOther.isDouble)
{
theOther.myData1 = nullptr;
theOther.myData1 = nullptr;
theOther.myData2 = nullptr;
theOther.mySize = 0;
theOther.myNbBuckets = 0;
}