Commit dfa1cddc authored by Noah Misch's avatar Noah Misch

Avoid scan-build warning about uninitialized htonl() arguments.

Josh Kupershmidt
parent 03a22f8b
......@@ -635,6 +635,8 @@ des_cipher(const char *in, char *out, long salt, int count)
rawr = ntohl(buffer[1]);
retval = do_des(rawl, rawr, &l_out, &r_out, count);
if (retval)
return (retval);
buffer[0] = htonl(l_out);
buffer[1] = htonl(r_out);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment