Hi,
I probably found the bug. Try to patch src/server/tools/nxdbmgr/upgrade.cpp as following:
Find line 492 - it should be
TCHAR *config = DBGetField(hResult, i, 3, NULL, 0);
insert after it the following code:
if (config == NULL)
config = _tcsdup(_T(""));
Rebuild nxdbmgr - it should work.
Best regards,
Victor
I probably found the bug. Try to patch src/server/tools/nxdbmgr/upgrade.cpp as following:
Find line 492 - it should be
TCHAR *config = DBGetField(hResult, i, 3, NULL, 0);
insert after it the following code:
if (config == NULL)
config = _tcsdup(_T(""));
Rebuild nxdbmgr - it should work.
Best regards,
Victor