Fix warnings.

This commit is contained in:
Ben Laurie
2002-06-11 12:03:51 +00:00
parent 012c86ab74
commit 25ace3ed25
4 changed files with 5 additions and 3 deletions

View File

@@ -153,7 +153,7 @@ ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(BIGNUM *bn, ASN1_ENUMERATED *ai)
len=((j == 0)?0:((j/8)+1)); len=((j == 0)?0:((j/8)+1));
if (ret->length < len+4) if (ret->length < len+4)
{ {
char *new_data=(char *)OPENSSL_realloc(ret->data, len+4); unsigned char *new_data=OPENSSL_realloc(ret->data, len+4);
if (!new_data) if (!new_data)
{ {
ASN1err(ASN1_F_BN_TO_ASN1_INTEGER,ERR_R_MALLOC_FAILURE); ASN1err(ASN1_F_BN_TO_ASN1_INTEGER,ERR_R_MALLOC_FAILURE);

View File

@@ -399,7 +399,7 @@ ASN1_INTEGER *BN_to_ASN1_INTEGER(BIGNUM *bn, ASN1_INTEGER *ai)
len=((j == 0)?0:((j/8)+1)); len=((j == 0)?0:((j/8)+1));
if (ret->length < len+4) if (ret->length < len+4)
{ {
char *new_data=(char *)OPENSSL_realloc(ret->data, len+4); unsigned char *new_data=OPENSSL_realloc(ret->data, len+4);
if (!new_data) if (!new_data)
{ {
ASN1err(ASN1_F_BN_TO_ASN1_INTEGER,ERR_R_MALLOC_FAILURE); ASN1err(ASN1_F_BN_TO_ASN1_INTEGER,ERR_R_MALLOC_FAILURE);

View File

@@ -366,7 +366,7 @@ int _ossl_old_des_enc_write(int fd,char *buf,int len,_ossl_old_des_key_schedule
_ossl_old_des_cblock *iv); _ossl_old_des_cblock *iv);
char *_ossl_old_des_fcrypt(const char *buf,const char *salt, char *ret); char *_ossl_old_des_fcrypt(const char *buf,const char *salt, char *ret);
char *_ossl_old_des_crypt(const char *buf,const char *salt); char *_ossl_old_des_crypt(const char *buf,const char *salt);
#if !defined(PERL5) && !defined(__FreeBSD__) && !defined(NeXT) #if !defined(PERL5) && !defined(NeXT)
char *_ossl_old_crypt(const char *buf,const char *salt); char *_ossl_old_crypt(const char *buf,const char *salt);
#endif #endif
void _ossl_old_des_ofb_encrypt(unsigned char *in,unsigned char *out, void _ossl_old_des_ofb_encrypt(unsigned char *in,unsigned char *out,

View File

@@ -78,4 +78,6 @@ ECDSA *ECDSA_generate_parameters(int bits,
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
#else
static void *dummy=&dummy;
#endif #endif