Displaying 1 result from an estimated 1 matches for "omethods".
Did you mean:
methods
2016 Feb 14
5
[Bug 2541] New: Add explicit_bzero() before free() in OpenSSH-7.1p2 for auth1.c/auth2.c/auth2-hostbased.c
...+379,7 @@
packet_put_char(partial);
packet_send();
packet_write_wait();
+ explicit_bzero(methods, sizeof(*methods));
free(methods);
}
}
@@ -491,6 +498,7 @@
}
ret = 0;
out:
+ explicit_bzero(omethods, sizeof(*omethods));
free(omethods);
return ret;
}
@@ -581,6 +589,7 @@
if (*p == ',')
p++;
*methods = xstrdup(p);
+ explicit_bzero(omethods, sizeof(*omethods));
free(omethods);
return 1;
}
=============================...