diff options
author | Florian Weimer <fweimer@redhat.com> | 2016-05-02 16:04:32 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2016-05-02 16:04:32 +0200 |
commit | 8a03ccbb77f52ec4b55062eeedddb8daec1a33e4 (patch) | |
tree | 2959b874623881825514fa37617982e9c249e1ac /hesiod | |
parent | 5018f16c6205404ba3aa7298dc8a3d45fbd46bfc (diff) | |
download | glibc-8a03ccbb77f52ec4b55062eeedddb8daec1a33e4.tar.gz glibc-8a03ccbb77f52ec4b55062eeedddb8daec1a33e4.tar.xz glibc-8a03ccbb77f52ec4b55062eeedddb8daec1a33e4.zip |
hesiod: Avoid heap overflow in get_txt_records [BZ #20031]
Diffstat (limited to 'hesiod')
-rw-r--r-- | hesiod/hesiod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hesiod/hesiod.c b/hesiod/hesiod.c index 6ecbad11cc..c2925a0f99 100644 --- a/hesiod/hesiod.c +++ b/hesiod/hesiod.c @@ -398,7 +398,7 @@ get_txt_records(struct hesiod_p *ctx, int class, const char *name) { cp += INT16SZ + INT32SZ; /* skip the ttl, too */ rr.dlen = ns_get16(cp); cp += INT16SZ; - if (cp + rr.dlen > eom) { + if (rr.dlen == 0 || cp + rr.dlen > eom) { __set_errno(EMSGSIZE); goto cleanup; } |