From 46d33884f2f1061ae1a77c26928f97d573e57c6c Mon Sep 17 00:00:00 2001 From: rcyeske Date: Fri, 2 Mar 2001 06:06:23 +0000 Subject: * ratpoison.h (xmalloc, xrealloc, fatal): Prototype. * main.c (xmalloc): Move here from sbuf.c. (xrealloc): Likewise. (fatal): Likewise. * number.c (find_empty_cell): Use xrealloc, remove error check. (init_numbers): Likewise. * manage.c (get_window_name): Likewise. * main.c (main): Likewise. * list.c (add_to_window_list): Likewise. (add_to_window_list): Likewise. * events.c (handle_key): Likewise. * input.c (keysym_to_string): Likewise. (get_more_input): Use xrealloc, remove error check. * main.c (read_rc_file): Take a file pointer rather than a filename. (read_startup_files): If ~/.ratpoisonrc is not readable try /etc/ratpoisonrc. --- src/manage.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/manage.c') diff --git a/src/manage.c b/src/manage.c index 0eb0e28..38d9c93 100644 --- a/src/manage.c +++ b/src/manage.c @@ -107,11 +107,8 @@ get_window_name (Window w) if (list_len > 0) { - if ((name = malloc (strlen (name_list[0]) + 1)) == NULL) - { - PRINT_ERROR ("Out of memory!\n"); - exit (EXIT_FAILURE); - } + name = xmalloc (strlen (name_list[0]) + 1); + strcpy (name, name_list[0]); /* Its our responsibility to free this. */ -- cgit v1.2.3