[BACK]Return to misc.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / gdtoa

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libc/gdtoa/misc.c between version 1.10 and 1.11

version 1.10, 2011/11/18 08:20:13 version 1.11, 2011/11/21 09:46:19
Line 76  Balloc
Line 76  Balloc
                 else                  else
                         rv = (Bigint*)MALLOC(len*sizeof(double));                          rv = (Bigint*)MALLOC(len*sizeof(double));
 #endif  #endif
                 if (rv == NULL)                  if (rv == NULL) {
                           FREE_DTOA_LOCK(0);
                         return NULL;                          return NULL;
                   }
                 rv->k = k;                  rv->k = k;
                 rv->maxwds = x;                  rv->maxwds = x;
                 }                  }

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

CVSweb <webmaster@jp.NetBSD.org>