Split a = b = c statement to remove warnings (errors) from picking compilers

This commit is contained in:
Kurt Zeilenga 2000-08-15 21:59:18 +00:00
parent 85b3f80869
commit 146f9d7ddf

View File

@ -541,7 +541,8 @@ IA5StringConvert(
struct berval *bv = ch_malloc( sizeof(struct berval) );
bv->bv_len = len * sizeof( ldap_unicode_t );
bv->bv_val = (char *) u = ch_malloc( bv->bv_len + sizeof(ldap_unicode_t) );
u = (ldap_unicode_t *) ch_malloc( bv->bv_len + sizeof(ldap_unicode_t) );
bv->bv_val = (char *) u;
for(i=0; i < len; i++ ) {
/*