From ac76adb8a516b63ea2868b3039783e32a5f87d19 Mon Sep 17 00:00:00 2001 From: Kevin Bracey <kbracey@gitlab.riscosopen.org> Date: Tue, 2 Sep 1997 16:56:28 +0000 Subject: [PATCH] Made sure validation string fields were zeroed. --- c/Hotlist | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/c/Hotlist b/c/Hotlist index 7abff7f..ae3ea99 100644 --- a/c/Hotlist +++ b/c/Hotlist @@ -1596,6 +1596,7 @@ static _kernel_oserror * hotlist_draw_r(hotlist_item *list, unsigned int first_i icon.data.it.buffer = list->data.url; icon.data.it.buffer_size = strlen(list->data.url); + icon.data.it.validation = NULL; } else { @@ -1608,6 +1609,7 @@ static _kernel_oserror * hotlist_draw_r(hotlist_item *list, unsigned int first_i icon.data.it.buffer = list->name; icon.data.it.buffer_size = strlen(list->name); + icon.data.it.validation = NULL; } /* Set the bounding box for the text. The hard coded */ @@ -3827,11 +3829,13 @@ static void hotlist_drag_renderer(hotlist_item *item, unsigned int item_height, { hotlist_iconblock.data.it.buffer = item->data.url; hotlist_iconblock.data.it.buffer_size = strlen(item->data.url); + hotlist_iconblock.data.it.validation = NULL; } else { hotlist_iconblock.data.it.buffer = item->name; hotlist_iconblock.data.it.buffer_size = strlen(item->name); + hotlist_iconblock.data.it.validation = NULL; } if (wimp_plot_icon(&hotlist_iconblock)) -- GitLab