# HG changeset patch # User Richard M. Stallman # Date 822607042 0 # Node ID dfeae392adcdba8fa22fa4ac5878627d44c32321 # Parent 54024c0084b8a7b3f6e6b3631ec9b5db36a01545 (x_get_window_property_as_lisp_data): Use xfree, not XFree. (x_get_window_property): Use XFree for tmp_data. diff -r 54024c0084b8 -r dfeae392adcd src/xselect.c --- a/src/xselect.c Thu Jan 25 20:28:07 1996 +0000 +++ b/src/xselect.c Thu Jan 25 21:57:22 1996 +0000 @@ -211,6 +211,7 @@ if (! str) return Qnil; val = intern (str); BLOCK_INPUT; + /* This was allocated by Xlib, so use XFree. */ XFree (str); UNBLOCK_INPUT; return val; @@ -720,6 +721,8 @@ /* Indicate we have successfully processed this event. */ x_selection_current_request = 0; + /* Use xfree, not XFree, because lisp_data_to_selection_data + calls xmalloc itself. */ if (!nofree) xfree (data); } @@ -1152,6 +1155,8 @@ /* Subroutines of x_get_window_property_as_lisp_data */ +/* Use xfree, not XFree, to free the data obtained with this function. */ + static void x_get_window_property (display, window, property, data_ret, bytes_ret, actual_type_ret, actual_format_ret, actual_size_ret, @@ -1188,7 +1193,8 @@ *bytes_ret = 0; return; } - xfree ((char *) tmp_data); + /* This was allocated by Xlib, so use XFree. */ + XFree ((char *) tmp_data); if (*actual_type_ret == None || *actual_format_ret == 0) { @@ -1223,7 +1229,8 @@ *actual_size_ret *= *actual_format_ret / 8; bcopy (tmp_data, (*data_ret) + offset, *actual_size_ret); offset += *actual_size_ret; - xfree ((char *) tmp_data); + /* This was allocated by Xlib, so use XFree. */ + XFree ((char *) tmp_data); } XFlush (display); @@ -1231,6 +1238,8 @@ *bytes_ret = offset; } +/* Use xfree, not XFree, to free the data obtained with this function. */ + static void receive_incremental_selection (display, window, property, target_type, min_size_bytes, data_ret, size_bytes_ret, @@ -1291,6 +1300,8 @@ if (! waiting_for_other_props_on_window (display, window)) XSelectInput (display, window, STANDARD_EVENT_SET); unexpect_property_change (wait_object); + /* Use xfree, not XFree, because x_get_window_property + calls xmalloc itself. */ if (tmp_data) xfree (tmp_data); break; } @@ -1316,6 +1327,8 @@ } bcopy (tmp_data, (*data_ret) + offset, tmp_size_bytes); offset += tmp_size_bytes; + /* Use xfree, not XFree, because x_get_window_property + calls xmalloc itself. */ xfree (tmp_data); } } @@ -1372,7 +1385,9 @@ unsigned int min_size_bytes = * ((unsigned int *) data); BLOCK_INPUT; - XFree ((char *) data); + /* Use xfree, not XFree, because x_get_window_property + calls xmalloc itself. */ + xfree ((char *) data); UNBLOCK_INPUT; receive_incremental_selection (display, window, property, target_type, min_size_bytes, &data, &bytes, @@ -1390,6 +1405,8 @@ val = selection_data_to_lisp_data (display, data, bytes, actual_type, actual_format); + /* Use xfree, not XFree, because x_get_window_property + calls xmalloc itself. */ xfree ((char *) data); return val; } @@ -1492,6 +1509,8 @@ } +/* Use xfree, not XFree, to free the data obtained with this function. */ + static void lisp_data_to_selection_data (display, obj, data_ret, type_ret, size_ret, @@ -1977,6 +1996,8 @@ Fcons (make_number (format), Qnil)))); ret = (bytes ? make_string ((char *) data, bytes) : Qnil); + /* Use xfree, not XFree, because x_get_window_property + calls xmalloc itself. */ xfree (data); return ret; }