Skip to content
Snippets Groups Projects
Commit 8b2ee368 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

xdp-gun: improve popen return handling to mute Clang analyzer

parent e3a89be7
No related branches found
No related tags found
1 merge request!1133Xdp gun opts
Pipeline #64126 passed
......@@ -343,9 +343,10 @@ static int ip_route_get(const char *ip, const char *what, char **res)
char cmd[50 + strlen(ip) + strlen(what)];
(void)snprintf(cmd, sizeof(cmd), "ip route get %s | grep -o ' %s [^ ]* '", ip, what);
errno = 0;
FILE *p = popen(cmd, "r");
if (p == NULL) {
return knot_map_errno();
return (errno != 0) ? knot_map_errno() : KNOT_ENOMEM;
}
char check[16] = { 0 }, got[256] = { 0 };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment