libnetmap: reset errno in nmreq_register_decode()

The reset is necessary at the beginning of the function, because of
the errno logic in the error path (set errno to EINVAL if not set).
If errno is already set when calling the function, and the function
fails, the previous errno value will be inherited.

(cherry picked from commit ab639bb287)
This commit is contained in:
Vincenzo Maffione 2021-04-02 14:31:57 +00:00 committed by Franco Fichtner
parent acef3d2b67
commit 5ec2fbfadd
1 changed files with 2 additions and 0 deletions

View File

@ -257,6 +257,8 @@ nmreq_register_decode(const char **pifname, struct nmreq_register *r, struct nmc
uint16_t nr_ringid;
uint64_t nr_flags;
errno = 0;
/* fill the request */
p_state = P_START;