Commit 21bc015d authored by Austin English's avatar Austin English Committed by Alexandre Julliard

dnsapi: Remove a useless check.

parent aebd13f7
...@@ -136,7 +136,7 @@ dns_ns_parserr(ns_msg *handle, ns_sect section, int rrnum, ns_rr *rr) { ...@@ -136,7 +136,7 @@ dns_ns_parserr(ns_msg *handle, ns_sect section, int rrnum, ns_rr *rr) {
int b; int b;
/* Make section right. */ /* Make section right. */
if (section < 0 || section >= ns_s_max) if (section >= ns_s_max)
RETERR(ENODEV); RETERR(ENODEV);
if (section != handle->_sect) if (section != handle->_sect)
setsection(handle, section); setsection(handle, section);
......
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