1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-07 03:22:57 +03:00

libc++ crashes fixes

This commit is contained in:
Leonid Fedorov
2025-08-01 03:33:40 +00:00
parent 7b660fa860
commit aa87d7fbb3
5 changed files with 55 additions and 52 deletions

View File

@@ -254,12 +254,13 @@ bool WEDataLoader::setupCpimport() // fork the cpimport
}
Cmds.push_back(0); // null terminate
// updatePrgmPath(Cmds);
// updatePrgmPath(Cmds);
// NOTE: for debugging
// // NOTE: for debugging
int aSize = Cmds.size();
for (int aIdx = 0; aIdx < aSize; ++aIdx)
// Do not address last terminating 0
for (int aIdx = 0; aIdx < aSize - 1; ++aIdx)
{
cout << "Args " << Cmds[aIdx] << endl;
}