let c_conn_idx be -1 (ITS#5235?)

This commit is contained in:
Pierangelo Masarati 2007-11-17 13:39:19 +00:00
parent af1492d189
commit 3c6714051e

View File

@ -2121,8 +2121,11 @@ ppolicy_db_init(
on->on_bi.bi_private = ch_calloc( sizeof(pp_info), 1 );
if ( dtblsize && !pwcons )
pwcons = ch_calloc(sizeof(pw_conn), dtblsize );
if ( dtblsize && !pwcons ) {
/* accommodate for c_conn_idx == -1 */
pwcons = ch_calloc( sizeof(pw_conn), dtblsize + 1 );
pwcons++;
}
return 0;
}
@ -2149,6 +2152,7 @@ ppolicy_close(
/* Perhaps backover should provide bi_destroy hooks... */
ov_count--;
if ( ov_count <=0 && pwcons ) {
pwcons--;
free( pwcons );
pwcons = NULL;
}