Processed: Re: Bug#891576: stretch-pu: package discover/2.1.2-7.1+deb9u1

2018-03-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + pending
Bug #891576 [release.debian.org] stretch-pu: package discover/2.1.2-7.1+deb9u1
Added tag(s) pending.

-- 
891576: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=891576
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#891576: stretch-pu: package discover/2.1.2-7.1+deb9u1

2018-03-10 Thread Adam D. Barratt
Control: tags -1 + pending

On Sat, 2018-03-03 at 14:27 +, Adam D. Barratt wrote:
> Control: tags -1 + confirmed
> 
> On Mon, 2018-02-26 at 21:45 +0200, Adrian Bunk wrote:
> >    * Use correct type for the length parameter of the getline()
> > call,
> >  thanks to Anatoly Borodin and Simon Quigley for writing and
> > for
> >  forwarding the patch (Closes: #876388, LP: #1718687).
> 
> Please go ahead.
> 

Uploaded and flagged for acceptance.

Regards,

Adam



Bug#891576: stretch-pu: package discover/2.1.2-7.1+deb9u1

2018-03-03 Thread Adam D. Barratt
Control: tags -1 + confirmed

On Mon, 2018-02-26 at 21:45 +0200, Adrian Bunk wrote:
>    * Use correct type for the length parameter of the getline() call,
>  thanks to Anatoly Borodin and Simon Quigley for writing and for
>  forwarding the patch (Closes: #876388, LP: #1718687).

Please go ahead.

Regards,

Adam



Processed: Re: Bug#891576: stretch-pu: package discover/2.1.2-7.1+deb9u1

2018-03-03 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + confirmed
Bug #891576 [release.debian.org] stretch-pu: package discover/2.1.2-7.1+deb9u1
Added tag(s) confirmed.

-- 
891576: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=891576
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#891576: stretch-pu: package discover/2.1.2-7.1+deb9u1

2018-02-26 Thread Adrian Bunk
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

   * Use correct type for the length parameter of the getline() call,
 thanks to Anatoly Borodin and Simon Quigley for writing and for
 forwarding the patch (Closes: #876388, LP: #1718687).
diff -u discover-2.1.2/debian/changelog discover-2.1.2/debian/changelog
--- discover-2.1.2/debian/changelog
+++ discover-2.1.2/debian/changelog
@@ -1,3 +1,12 @@
+discover (2.1.2-7.1+deb9u1) stretch; urgency=medium
+
+  * Non-maintainer upload.
+  * Use correct type for the length parameter of the getline() call,
+thanks to Anatoly Borodin and Simon Quigley for writing and for
+forwarding the patch (Closes: #876388, LP: #1718687).
+
+ -- Adrian Bunk   Mon, 26 Feb 2018 21:38:40 +0200
+
 discover (2.1.2-7.1) unstable; urgency=medium
 
   * Non-maintainer upload.
only in patch2:
unchanged:
--- discover-2.1.2.orig/sysdeps/linux/pci.c
+++ discover-2.1.2/sysdeps/linux/pci.c
@@ -160,7 +160,7 @@
 FILE *f;
 DIR *pciDir;
 struct dirent *pci_device_entry;
-unsigned int len;
+size_t len = 0;
 char *device_dir, *line, *class, *vendor, *model, *p;
 char **device_dir_list = NULL;
 size_t device_dir_list_len, device_dir_index, device_dir_index2;