Actions
Bug #802
closedwlmscpfs: wrong type used for _findfirst() causes problems on 64-bit Windows
Start date:
2017-11-09
Due date:
% Done:
100%
Estimated time:
Module:
dcmwlm, dcmavixl
Operating System:
Win64
Compiler:
Description
The Worklist SCP currently uses the following code:
long hFile = _findfirst( (char*)searchname.c_str(), &fileData );
The return type for _findfirst
needs to be intptr_t
. This makes a difference on Win64, where long is 32 bit, and intptr_t is 64 bit.
This bug also affects some of the private modules.
Actions