Another missing ifdef in ffmsindex

Originally committed to SVN as r2988.
This commit is contained in:
Karl Blomster 2009-05-25 16:28:28 +00:00
parent 64242fd363
commit 4ba221a931

View file

@ -202,7 +202,7 @@ int main(int argc, char *argv[]) {
} }
#ifdef _WIN32 #ifdef _WIN32
if (!SUCCEEDED(CoInitializeEx(NULL, COINIT_MULTITHREADED))) { if (FAILED(CoInitializeEx(NULL, COINIT_MULTITHREADED))) {
std::cout << "COM initialization failure" << std::endl; std::cout << "COM initialization failure" << std::endl;
return 1; return 1;
} }
@ -230,6 +230,8 @@ int main(int argc, char *argv[]) {
} }
FFMS_DestroyFFIndex(Index); FFMS_DestroyFFIndex(Index);
#ifdef _WIN32
CoUninitialize(); CoUninitialize();
#endif
return 0; return 0;
} }