- Timestamp:
- Jan 27, 2025 6:59:16 PM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167200
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/acpi-decompiler.cpp
r107952 r107953 287 287 288 288 /* Check for a root path. */ 289 uint8_t bTmp ;289 uint8_t bTmp = 0; /* shut up gcc */ 290 290 int rc = rtAcpiTblAmlDecodeReadU8(pThis, &bTmp, pErrInfo); 291 291 if (RT_FAILURE(rc)) return rc; … … 1107 1107 case kAcpiAmlOpcType_Word: 1108 1108 { 1109 uint16_t u16Val ;1109 uint16_t u16Val = 0; /* shut up gcc */ 1110 1110 rc = rtAcpiTblAmlDecodeReadU16(pThis, &u16Val, pErrInfo); 1111 1111 if (RT_FAILURE(rc)) return rc; … … 1119 1119 case kAcpiAmlOpcType_DWord: 1120 1120 { 1121 uint32_t u32Val ;1121 uint32_t u32Val = 0; /* shut up gcc */ 1122 1122 rc = rtAcpiTblAmlDecodeReadU32(pThis, &u32Val, pErrInfo); 1123 1123 if (RT_FAILURE(rc)) return rc;
Note:
See TracChangeset
for help on using the changeset viewer.