CPack: Fix dashboard errors (#11575)

Use same technique here with UuidToString as already found in
cmGlobalVisualStudio7Generator::CreateGUID to avoid using a type
that is not defined on older systems... (VS 7.0 and Borland)
This commit is contained in:
David Cole 2012-12-03 13:16:35 -05:00
parent 85baac1503
commit 0729ad476c
1 changed files with 2 additions and 2 deletions

View File

@ -539,8 +539,8 @@ std::string cmCPackWIXGenerator::GenerateGUID()
UUID guid; UUID guid;
UuidCreate(&guid); UuidCreate(&guid);
RPC_CSTR tmp = 0; unsigned char *tmp = 0;
UuidToStringA(&guid, &tmp); UuidToString(&guid, &tmp);
std::string result(reinterpret_cast<char*>(tmp)); std::string result(reinterpret_cast<char*>(tmp));
RpcStringFree(&tmp); RpcStringFree(&tmp);