X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/3d88e64dfcf5dc0fd361ce0c504c67a9196ce44c..9ec95c23db58dac88a48fae594ea978c148d1c61:/winctrls.c diff --git a/winctrls.c b/winctrls.c index 204bc4a4..85b6dfb5 100644 --- a/winctrls.c +++ b/winctrls.c @@ -287,6 +287,7 @@ void radioline(struct ctlpos *cp, char *text, int id, int nacross, ...) if (!btext) break; bid = va_arg(ap, int); + nbuttons++; } va_end(ap); buttons = snewn(nbuttons, struct radio); @@ -2458,7 +2459,7 @@ void dp_init(struct dlgparam *dp) dp->focused = dp->lastfocused = NULL; memset(dp->shortcuts, 0, sizeof(dp->shortcuts)); dp->hwnd = NULL; - dp->errtitle = NULL; + dp->wintitle = dp->errtitle = NULL; dp->privdata = newtree234(perctrl_privdata_cmp); } @@ -2482,6 +2483,8 @@ void dp_cleanup(struct dlgparam *dp) freetree234(dp->privdata); dp->privdata = NULL; } + sfree(dp->wintitle); + sfree(dp->errtitle); } void *dlg_get_privdata(union control *ctrl, void *dlg)