Re: [PATCH 4/4] rtems-debugger-target.c: Fix Coverity Dereference before null check

2021-02-11 Thread Gedare Bloom
On Thu, Feb 11, 2021 at 2:37 PM Chris Johns wrote: > > > > On 12/2/21 8:35 am, Gedare Bloom wrote: > > On Thu, Feb 11, 2021 at 2:33 PM Joel Sherrill wrote: > >> > >> > >> > >> On Thu, Feb 11, 2021 at 3:29 PM Chris Johns wrote: > >>> > >>> On 12/2/21 8:16 am, Gedare Bloom wrote: > On Thu,

Re: [PATCH 4/4] rtems-debugger-target.c: Fix Coverity Dereference before null check

2021-02-11 Thread Chris Johns
On 12/2/21 8:35 am, Gedare Bloom wrote: > On Thu, Feb 11, 2021 at 2:33 PM Joel Sherrill wrote: >> >> >> >> On Thu, Feb 11, 2021 at 3:29 PM Chris Johns wrote: >>> >>> On 12/2/21 8:16 am, Gedare Bloom wrote: On Thu, Feb 11, 2021 at 2:00 PM Chris Johns wrote: > > On 12/2/21 7:27

Re: [PATCH 4/4] rtems-debugger-target.c: Fix Coverity Dereference before null check

2021-02-11 Thread Chris Johns
On 12/2/21 8:33 am, Joel Sherrill wrote: > > > On Thu, Feb 11, 2021 at 3:29 PM Chris Johns > wrote: > > On 12/2/21 8:16 am, Gedare Bloom wrote: > > On Thu, Feb 11, 2021 at 2:00 PM Chris Johns > wrote: > >> > >> On 12/2/21

Re: [PATCH 4/4] rtems-debugger-target.c: Fix Coverity Dereference before null check

2021-02-11 Thread Gedare Bloom
On Thu, Feb 11, 2021 at 2:33 PM Joel Sherrill wrote: > > > > On Thu, Feb 11, 2021 at 3:29 PM Chris Johns wrote: >> >> On 12/2/21 8:16 am, Gedare Bloom wrote: >> > On Thu, Feb 11, 2021 at 2:00 PM Chris Johns wrote: >> >> >> >> On 12/2/21 7:27 am, Ryan Long wrote: >> >>> Fixes CID #1468682 where

Re: [PATCH 4/4] rtems-debugger-target.c: Fix Coverity Dereference before null check

2021-02-11 Thread Joel Sherrill
On Thu, Feb 11, 2021 at 3:29 PM Chris Johns wrote: > On 12/2/21 8:16 am, Gedare Bloom wrote: > > On Thu, Feb 11, 2021 at 2:00 PM Chris Johns wrote: > >> > >> On 12/2/21 7:27 am, Ryan Long wrote: > >>> Fixes CID #1468682 where target is dereferenced before it has been > >>> checked as to whether

Re: [PATCH 4/4] rtems-debugger-target.c: Fix Coverity Dereference before null check

2021-02-11 Thread Chris Johns
On 12/2/21 8:16 am, Gedare Bloom wrote: > On Thu, Feb 11, 2021 at 2:00 PM Chris Johns wrote: >> >> On 12/2/21 7:27 am, Ryan Long wrote: >>> Fixes CID #1468682 where target is dereferenced before it has been >>> checked as to whether it is null or not in the >>>

Re: [PATCH 4/4] rtems-debugger-target.c: Fix Coverity Dereference before null check

2021-02-11 Thread Chris Johns
On 12/2/21 8:03 am, Joel Sherrill wrote: > On Thu, Feb 11, 2021, 3:00 PM Chris Johns > wrote: > > On 12/2/21 7:27 am, Ryan Long wrote: > > Fixes CID #1468682 where target is dereferenced before it has been > > checked as to whether it is null or not in the >

Re: [PATCH 4/4] rtems-debugger-target.c: Fix Coverity Dereference before null check

2021-02-11 Thread Gedare Bloom
On Thu, Feb 11, 2021 at 2:00 PM Chris Johns wrote: > > On 12/2/21 7:27 am, Ryan Long wrote: > > Fixes CID #1468682 where target is dereferenced before it has been > > checked as to whether it is null or not in the > > rtems_debugger_target_swbreak_control function. > > --- > >

Re: [PATCH 4/4] rtems-debugger-target.c: Fix Coverity Dereference before null check

2021-02-11 Thread Gedare Bloom
On Thu, Feb 11, 2021 at 1:28 PM Ryan Long wrote: > > Fixes CID #1468682 where target is dereferenced before it has been > checked as to whether it is null or not in the > rtems_debugger_target_swbreak_control function. > --- > cpukit/libdebugger/rtems-debugger-target.c | 5 +++-- > 1 file

Re: [PATCH 4/4] rtems-debugger-target.c: Fix Coverity Dereference before null check

2021-02-11 Thread Joel Sherrill
On Thu, Feb 11, 2021, 3:00 PM Chris Johns wrote: > On 12/2/21 7:27 am, Ryan Long wrote: > > Fixes CID #1468682 where target is dereferenced before it has been > > checked as to whether it is null or not in the > > rtems_debugger_target_swbreak_control function. > > --- > >

Re: [PATCH 4/4] rtems-debugger-target.c: Fix Coverity Dereference before null check

2021-02-11 Thread Chris Johns
On 12/2/21 7:27 am, Ryan Long wrote: > Fixes CID #1468682 where target is dereferenced before it has been > checked as to whether it is null or not in the > rtems_debugger_target_swbreak_control function. > --- > cpukit/libdebugger/rtems-debugger-target.c | 5 +++-- > 1 file changed, 3

[PATCH 4/4] rtems-debugger-target.c: Fix Coverity Dereference before null check

2021-02-11 Thread Ryan Long
Fixes CID #1468682 where target is dereferenced before it has been checked as to whether it is null or not in the rtems_debugger_target_swbreak_control function. --- cpukit/libdebugger/rtems-debugger-target.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git