~motumedia/xine-ui/ubuntu

« back to all changes in this revision

Viewing changes to src/xitk/xine-toolkit/widget.c

  • Committer: Reinhard Tartler
  • Date: 2007-01-30 10:33:18 UTC
  • mfrom: (2541.1.34 xine-ui.0.99.4+cvs)
  • Revision ID: siretart@tauware.de-20070130103318-evmro8n4ydtj3cwb
merge debian changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 * along with this program; if not, write to the Free Software
18
18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA
19
19
 *
20
 
 * $Id: widget.c,v 1.67 2004/12/22 00:01:53 fsck-p Exp $
 
20
 * $Id: widget.c,v 1.68 2006/08/26 01:37:11 fsck-p Exp $
21
21
 *
22
22
 */
23
23
#ifdef HAVE_CONFIG_H
740
740
    size++;
741
741
  
742
742
  if((ptrmalloc = calloc(1, size)) == NULL) {
743
 
    XITK_WARNING("calloc() failed: %s.\n", strerror(errno));
744
 
    return NULL;
 
743
    XITK_DIE("%s(): calloc() failed: %s\n", __FUNCTION__, strerror(errno));
745
744
  }
746
745
 
747
746
  return ptrmalloc;