[ovs-dev] [PATCH v14 3/4] lib, ovsdb, vtep: Add various null pointer checks

2023-08-03 Thread James Raphael Tiovalen
This commit adds various null pointer checks to some files in the `lib`, `ovsdb`, and `vtep` directories to fix several Coverity defects. These changes are grouped together as they perform similar checks, returning early, skipping some action, or logging a warning if a null pointer is encountered.

Re: [ovs-dev] [PATCH v14 3/4] lib, ovsdb, vtep: Add various null pointer checks

2023-08-24 Thread Eelco Chaudron
On 3 Aug 2023, at 18:19, James Raphael Tiovalen wrote: > This commit adds various null pointer checks to some files in the `lib`, > `ovsdb`, and `vtep` directories to fix several Coverity defects. These > changes are grouped together as they perform similar checks, returning > early, skipping so

Re: [ovs-dev] [PATCH v14 3/4] lib, ovsdb, vtep: Add various null pointer checks

2023-09-01 Thread Ilya Maximets
On 8/24/23 12:17, Eelco Chaudron wrote: > > > On 3 Aug 2023, at 18:19, James Raphael Tiovalen wrote: > >> This commit adds various null pointer checks to some files in the `lib`, >> `ovsdb`, and `vtep` directories to fix several Coverity defects. These >> changes are grouped together as they per