- Intermediate commit which works on making bcmath thread-safe.

This commit is contained in:
Andi Gutmans 2002-11-20 19:48:12 +00:00
parent 33d0e4e1fb
commit e6b7ab9db8
10 changed files with 40 additions and 40 deletions

View file

@ -48,7 +48,7 @@ bc_is_zero (num)
char *nptr;
/* Quick check. */
if (num == _zero_) return TRUE;
if (num == BCG(_zero_)) return TRUE;
/* Initialize */
count = num->n_len + num->n_scale;