X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=form%2Ffty_num.c;h=e74e8e36fe2592f842b467fc9c3f7418acb65c0c;hp=cd09dfb001fe3fbb869ff3979c75acf54c4c9391;hb=bbb7fd37298f7d81386a4cf868417b9e084d7d90;hpb=027ae42953e3186daed8f3882da73de48291b606 diff --git a/form/fty_num.c b/form/fty_num.c index cd09dfb0..e74e8e36 100644 --- a/form/fty_num.c +++ b/form/fty_num.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2005,2006 Free Software Foundation, Inc. * + * Copyright (c) 1998-2006,2007 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -34,7 +34,7 @@ #include "form.priv.h" -MODULE_ID("$Id: fty_num.c,v 1.23 2006/04/22 21:33:05 tom Exp $") +MODULE_ID("$Id: fty_num.c,v 1.25 2007/10/13 19:32:54 tom Exp $") #if HAVE_LOCALE_H #include @@ -74,10 +74,11 @@ thisARG; static void * Make_This_Type(va_list *ap) { - thisARG *argn = (thisARG *) malloc(sizeof(thisARG)); + thisARG *argn = typeMalloc(thisARG, 1); if (argn) { + T((T_CREATE("thisARG %p"), argn)); argn->precision = va_arg(*ap, int); argn->low = va_arg(*ap, double); argn->high = va_arg(*ap, double); @@ -107,9 +108,12 @@ Copy_This_Type(const void *argp) if (argp) { - result = (thisARG *) malloc(sizeof(thisARG)); + result = typeMalloc(thisARG, 1); if (result) - *result = *ap; + { + T((T_CREATE("thisARG %p"), result)); + *result = *ap; + } } return (void *)result; }