Index: /trunk/src/VBox/Runtime/generic/uuid-generic.cpp
===================================================================
--- /trunk/src/VBox/Runtime/generic/uuid-generic.cpp	(revision 32987)
+++ /trunk/src/VBox/Runtime/generic/uuid-generic.cpp	(revision 32988)
@@ -249,4 +249,6 @@
 RTDECL(int)  RTUuidFromStr(PRTUUID pUuid, const char *pszString)
 {
+    bool fHaveBraces;
+
     /*
      * Validate parameters.
@@ -255,5 +257,5 @@
     AssertPtrReturn(pszString, VERR_INVALID_PARAMETER);
 
-    bool fHaveBraces = (pszString[0] == '{' && pszString[37] == '}');
+    fHaveBraces = (pszString[0] == '{' && pszString[37] == '}');
     if (fHaveBraces)
         pszString++;
@@ -418,4 +420,5 @@
 RTDECL(int)  RTUuidFromUtf16(PRTUUID pUuid, PCRTUTF16 pwszString)
 {
+    bool fHaveBraces;
 
     /*
@@ -425,5 +428,5 @@
     AssertPtrReturn(pwszString, VERR_INVALID_PARAMETER);
 
-    bool fHaveBraces = (pwszString[0] == '{' && pwszString[37] == '}');
+    fHaveBraces = (pwszString[0] == '{' && pwszString[37] == '}');
     if (fHaveBraces)
         pwszString++;
