Re: [PATCH v2] checkpatch: Fix the usage of capture group ( ... )

2020-08-20 Thread Joe Perches
On Thu, 2020-08-20 at 10:22 +0530, Mrinal Pandey wrote: > On 20/07/30 12:31AM, Joe Perches wrote: > > On Thu, 2020-07-30 at 07:58 +0200, Lukas Bulwahn wrote: > > > Hi Joe, > > > > > > did you see this quick fix to checkpatch.pl? Can you comment on the > > > commit and can we get a quick ack on

Re: [PATCH v2] checkpatch: Fix the usage of capture group ( ... )

2020-08-19 Thread Mrinal Pandey
On 20/07/30 12:31AM, Joe Perches wrote: > On Thu, 2020-07-30 at 07:58 +0200, Lukas Bulwahn wrote: > > Hi Joe, > > > > did you see this quick fix to checkpatch.pl? Can you comment on the > > commit and can we get a quick ack on that fix, please? > > Yes, in a bit. > > > General question on

Re: [PATCH v2] checkpatch: Fix the usage of capture group ( ... )

2020-07-30 Thread Joe Perches
On Thu, 2020-07-30 at 07:58 +0200, Lukas Bulwahn wrote: > Hi Joe, > > did you see this quick fix to checkpatch.pl? Can you comment on the > commit and can we get a quick ack on that fix, please? Yes, in a bit. > General question on patches for ./scripts/checkpatch.pl: > How do they travel to

Re: [PATCH v2] checkpatch: Fix the usage of capture group ( ... )

2020-07-29 Thread Lukas Bulwahn
On Tue, 14 Jul 2020, Mrinal Pandey wrote: > The usage of "capture group (...)" in the immediate condition after `&&` > results in `$1` being uninitialized. This issues a warning "Use of > uninitialized value $1 in regexp compilation at ./scripts/checkpatch.pl > line 2638". > > I noticed this

Re: [PATCH v2] checkpatch: Fix the usage of capture group ( ... )

2020-07-13 Thread Lukas Bulwahn
On Tue, 14 Jul 2020, Mrinal Pandey wrote: > The usage of "capture group (...)" in the immediate condition after `&&` > results in `$1` being uninitialized. This issues a warning "Use of > uninitialized value $1 in regexp compilation at ./scripts/checkpatch.pl > line 2638". > > I noticed this

[PATCH v2] checkpatch: Fix the usage of capture group ( ... )

2020-07-13 Thread Mrinal Pandey
The usage of "capture group (...)" in the immediate condition after `&&` results in `$1` being uninitialized. This issues a warning "Use of uninitialized value $1 in regexp compilation at ./scripts/checkpatch.pl line 2638". I noticed this bug while running checkpatch on the set of commits from