VirtualBox

Changeset 107953 in vbox for trunk


Ignore:
Timestamp:
Jan 27, 2025 6:59:16 PM (3 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
167200
Message:

Runtime: Start imlementing a basic ACPI decompiler and iasl compatible frontend, bugref:10733 [build fix]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/misc/acpi-decompiler.cpp

    r107952 r107953  
    287287
    288288    /* Check for a root path. */
    289     uint8_t bTmp;
     289    uint8_t bTmp = 0; /* shut up gcc */
    290290    int rc = rtAcpiTblAmlDecodeReadU8(pThis, &bTmp, pErrInfo);
    291291    if (RT_FAILURE(rc)) return rc;
     
    11071107                    case kAcpiAmlOpcType_Word:
    11081108                    {
    1109                         uint16_t u16Val;
     1109                        uint16_t u16Val = 0; /* shut up gcc */
    11101110                        rc = rtAcpiTblAmlDecodeReadU16(pThis, &u16Val, pErrInfo);
    11111111                        if (RT_FAILURE(rc)) return rc;
     
    11191119                    case kAcpiAmlOpcType_DWord:
    11201120                    {
    1121                         uint32_t u32Val;
     1121                        uint32_t u32Val = 0; /* shut up gcc */
    11221122                        rc = rtAcpiTblAmlDecodeReadU32(pThis, &u32Val, pErrInfo);
    11231123                        if (RT_FAILURE(rc)) return rc;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette