Uploaded image for project: 'Core ReactOS'
  1. Core ReactOS
  2. CORE-7056

pci: Variables assigned twice succesively

    XMLWordPrintable

Details

    • Bug
    • Resolution: Unresolved
    • Major
    • None
    • Drivers: Other
    • None

    Description

      PCI bus driver.
      http://doxygen.reactos.org/d6/d25/drivers_2bus_2pcix_2init_8c_a2b1957848b9af9f2e0330fa5887fe4da.html#a2b1957848b9af9f2e0330fa5887fe4da

      00738 Result = PciOpenKey(L"Parameters",
      00739 KeyHandle,
      00740 KEY_QUERY_VALUE,
      00741 &ParametersKey,
      00742 &Status);
      00743 //if (!Result) break;
      00744
      00745 /* Build the list of all known PCI erratas */
      00746 Status = PciBuildHackTable(ParametersKey);
      00747 //if (!NT_SUCCESS(Status)) break;
      00748
      00749 /* Open the debug key, if it exists */
      00750 Result = PciOpenKey(L"Debug",
      00751 KeyHandle,
      00752 KEY_QUERY_VALUE,
      00753 &DebugKey,
      00754 &Status);

      Seems we are ignoring PciOpenKey result when the string is "Parameters".

      Attachments

        Activity

          People

            fireball fireball
            vicmarcal vicmarcal
            Votes:
            1 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated: