fix msvc6 template warning

fix writing to uninitialized pointer

svn path=/trunk/; revision=18627
This commit is contained in:
Royce Mitchell III 2005-10-20 13:59:37 +00:00
parent 997e8fb48c
commit f08e0f0692

View file

@ -20,7 +20,7 @@
*
*/
#include "../../pch.h"
#include "msvc.h"
#include <string>
@ -45,7 +45,7 @@ MSVCBackend::_gen_guid()
GUID m_guid;
HRESULT result;
bool good_guid = false;
char* guid;
static char guid[38];
// Load ole32. We will need it later on
HMODULE olelib = LoadLibrary ( "ole32.dll" );