]> source.dussan.org Git - rspamd.git/commitdiff
Oops, fix typename for rnds
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Wed, 20 Jan 2016 16:25:43 +0000 (16:25 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Wed, 20 Jan 2016 16:25:43 +0000 (16:25 +0000)
contrib/librdns/packet.c

index c07418604ec68683c97adee832b94f49d6077f9d..532b5de91cb7682407448e921340c6fef6bb1b45 100644 (file)
@@ -131,7 +131,7 @@ rdns_format_dns_name (struct rdns_resolver *resolver, const char *in,
        /* We need to encode */
        p = in;
        /* We allocate 4 times more memory as we cannot guarantee encoding bounds */
-       olen = inlen * sizeof (guint32) + 1 + sizeof ("xn--") * labels;
+       olen = inlen * sizeof (int32_t) + 1 + sizeof ("xn--") * labels;
        *out = malloc (olen + 1);
 
        if (*out == NULL) {