]> andersk Git - splint.git/blobdiff - src/lcltokentable.c
ADded numabstract types.
[splint.git] / src / lcltokentable.c
index 034f3d5b0942ba4f8931f5403f99e6c0496b42ed..dfb206bc7db2b66ee40fe441af009f182a81191a 100644 (file)
@@ -17,8 +17,8 @@
 ** the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 ** MA 02111-1307, USA.
 **
-** For information on splint: splint@cs.virginia.edu
-** To report a bug: splint-bug@cs.virginia.edu
+** For information on splint: info@splint.org
+** To report a bug: splint-bug@splint.org
 ** For more information: http://www.splint.org
 */
 /*
@@ -161,7 +161,8 @@ static void
     {
       newSize = INITTOKENTABLE;
       llassert (LCLTokenTable == NULL);
-      LCLTokenTable = (ltoken *) dmalloc (newSize * sizeof (*LCLTokenTable));
+      LCLTokenTable = (ltoken *) dmalloc 
+       (size_fromLongUnsigned (newSize * sizeof (*LCLTokenTable)));
     }
   else
     {
@@ -170,7 +171,8 @@ static void
       llassert (oldLCLTokenTable != NULL);
 
       newSize = (long unsigned) (DELTATOKENTABLE * oldSize);
-      LCLTokenTable = (ltoken *) dmalloc (newSize * sizeof (*LCLTokenTable));
+      LCLTokenTable = (ltoken *) dmalloc 
+       (size_fromLongUnsigned (newSize * sizeof (*LCLTokenTable)));
 
       for (i = 0; i < oldSize; i++)
        {
This page took 0.036008 seconds and 4 git commands to generate.