From 7721a4de678967c527c4887e036f7a93722296ed Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 20 Aug 2008 10:27:46 +0000 Subject: Checks to make sure that WMI initialises, if it doesnt we return -1 for CPU percentage git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10180 e03df62e-2008-0410-955e-edbf42e46eb7 --- win/inspircd_win32wrapper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'win/inspircd_win32wrapper.cpp') diff --git a/win/inspircd_win32wrapper.cpp b/win/inspircd_win32wrapper.cpp index 37da9c0b3..62d9ff329 100644 --- a/win/inspircd_win32wrapper.cpp +++ b/win/inspircd_win32wrapper.cpp @@ -753,7 +753,7 @@ int getcpu() &pEnumerator); if (FAILED(hres)) - return 0; + return -1; IWbemClassObject *pclsObj = NULL; ULONG uReturn = 0; @@ -790,5 +790,5 @@ int getcpu() } pEnumerator->Release(); pclsObj->Release(); - return 0; + return -1; } -- cgit v1.2.3