Loading crypto/asn1/a_gentm.c +1 −1 Original line number Diff line number Diff line Loading @@ -220,7 +220,7 @@ ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s, return(NULL); p=(char *)s->data; if ((p == NULL) || (s->length < len)) if ((p == NULL) || ((size_t)s->length < len)) { p=OPENSSL_malloc(len); if (p == NULL) return(NULL); Loading crypto/asn1/a_utctm.c +1 −1 Original line number Diff line number Diff line Loading @@ -200,7 +200,7 @@ ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t) return(NULL); p=(char *)s->data; if ((p == NULL) || (s->length < len)) if ((p == NULL) || ((size_t)s->length < len)) { p=OPENSSL_malloc(len); if (p == NULL) return(NULL); Loading Loading
crypto/asn1/a_gentm.c +1 −1 Original line number Diff line number Diff line Loading @@ -220,7 +220,7 @@ ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s, return(NULL); p=(char *)s->data; if ((p == NULL) || (s->length < len)) if ((p == NULL) || ((size_t)s->length < len)) { p=OPENSSL_malloc(len); if (p == NULL) return(NULL); Loading
crypto/asn1/a_utctm.c +1 −1 Original line number Diff line number Diff line Loading @@ -200,7 +200,7 @@ ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t) return(NULL); p=(char *)s->data; if ((p == NULL) || (s->length < len)) if ((p == NULL) || ((size_t)s->length < len)) { p=OPENSSL_malloc(len); if (p == NULL) return(NULL); Loading