winecfg: No need to cut a backslash if it does not exist.

This commit is contained in:
Bruno Jesus 2014-10-24 01:37:00 -02:00 committed by Alexandre Julliard
parent 19254eb438
commit c5aacafeea
1 changed files with 3 additions and 5 deletions

View File

@ -377,19 +377,17 @@ static void on_remove_app_click(HWND dialog)
{
HWND listview = GetDlgItem(dialog, IDC_APP_LISTVIEW);
int selection = get_listview_selection(listview);
char *section = keypath(""); /* AppDefaults\\whatever.exe\\ */
LVITEMW item;
item.iItem = selection;
item.iSubItem = 0;
item.mask = LVIF_PARAM;
WINE_TRACE("selection=%d, section=%s\n", selection, section);
WINE_TRACE("selection=%d\n", selection);
assert( selection != 0 ); /* user cannot click this button when "default settings" is selected */
section[strlen(section)] = '\0'; /* remove last backslash */
set_reg_key(config_key, section, NULL, NULL); /* delete the section */
set_reg_key(config_key, keypath(""), NULL, NULL); /* delete the section */
SendMessageW(listview, LVM_GETITEMW, 0, (LPARAM) &item);
HeapFree (GetProcessHeap(), 0, (void*)item.lParam);
SendMessageW(listview, LVM_DELETEITEM, selection, 0);