Re: [PATCH 1/2] elf2dmp: Check curl_easy_setopt() return value

2021-09-08 Thread Philippe Mathieu-Daudé
On 9/8/21 11:43 PM, Viktor Prutyanov wrote: > On Wed, 1 Sep 2021 17:25:09 +0200 > Philippe Mathieu-Daudé wrote: > >> On 9/1/21 4:39 PM, Peter Maydell wrote: >>> Coverity points out that we aren't checking the return value >>> from curl_easy_setopt(). >>> >>> Fixes: Coverity CID 1458895 >>>

Re: [PATCH 1/2] elf2dmp: Check curl_easy_setopt() return value

2021-09-08 Thread Viktor Prutyanov
Hi, On Wed, 1 Sep 2021 17:25:09 +0200 Philippe Mathieu-Daudé wrote: > On 9/1/21 4:39 PM, Peter Maydell wrote: > > Coverity points out that we aren't checking the return value > > from curl_easy_setopt(). > > > > Fixes: Coverity CID 1458895 > > Signed-off-by: Peter Maydell > > --- > >

Re: [PATCH 1/2] elf2dmp: Check curl_easy_setopt() return value

2021-09-01 Thread Philippe Mathieu-Daudé
On 9/1/21 4:39 PM, Peter Maydell wrote: > Coverity points out that we aren't checking the return value > from curl_easy_setopt(). > > Fixes: Coverity CID 1458895 > Signed-off-by: Peter Maydell > --- > contrib/elf2dmp/download.c | 28 +--- > 1 file changed, 17

[PATCH 1/2] elf2dmp: Check curl_easy_setopt() return value

2021-09-01 Thread Peter Maydell
Coverity points out that we aren't checking the return value from curl_easy_setopt(). Fixes: Coverity CID 1458895 Signed-off-by: Peter Maydell --- contrib/elf2dmp/download.c | 28 +--- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git