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.
This commit is contained in:
parent
69efe3695d
commit
ab639bb287
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user