[Bug 690431] Re: lspci crashed with SIGSEGV in pci_load_name_list() (with invalid parameter to -i)

2014-01-26 Thread Tim Gardner
Uploaded pciutils (1:3.2.1-1ubuntu1) ** Also affects: pciutils (Ubuntu Trusty) Importance: Medium Status: Triaged ** Changed in: pciutils (Ubuntu Trusty) Status: Triaged = Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 690431] Re: lspci crashed with SIGSEGV in pci_load_name_list() (with invalid parameter to -i)

2014-01-26 Thread Dave Gilbert
Thanks Tim; seems to work. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/690431 Title: lspci crashed with SIGSEGV in pci_load_name_list() (with invalid parameter to -i) To manage notifications

[Bug 690431] Re: lspci crashed with SIGSEGV in pci_load_name_list() (with invalid parameter to -i)

2014-01-18 Thread Dave Gilbert
3.2.1-1 is in Jessie, so if we sinked that we should fix this bug. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/690431 Title: lspci crashed with SIGSEGV in pci_load_name_list() (with invalid

[Bug 690431] Re: lspci crashed with SIGSEGV in pci_load_name_list() (with invalid parameter to -i)

2013-05-21 Thread Dave Gilbert
It looks like upstream has taken my patch (as their bbd5d5633abfb070ed40b8452808029cc775f02a ) and it should be in 3.2.0 whenever that happens -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/690431

[Bug 690431] Re: lspci crashed with SIGSEGV in pci_load_name_list() (with invalid parameter to -i)

2012-12-04 Thread Dave Gilbert
Confirmed this still happens on debian and upstream's pciutils-3.1.10; I can see a trivial fix to lib/names-parse.c: if (len = 3 memcmp(a-id_file_name + len - 3, .gz, 3) != 0) return result; to become if (len 3 || memcmp(a-id_file_name + len - 3, .gz, 3) != 0) return result; but