programs: Remove unreachable break after return/break. Found by Smatch.

This commit is contained in:
Michael Stefaniuc 2007-07-19 01:13:13 +02:00 committed by Alexandre Julliard
parent 02933a11de
commit 9a522589fb
7 changed files with 0 additions and 8 deletions

View File

@ -188,10 +188,8 @@ BOOL DoCloseFile(void)
case IDNO: break;
case IDCANCEL: return(FALSE);
break;
default: return(FALSE);
break;
} /* switch */
} /* if */

View File

@ -735,7 +735,6 @@ static BOOL _CmdWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
StartValueRename(g_pChildWnd->hListWnd);
}
break;
break;
case ID_REGISTRY_PRINTERSETUP:
/*PRINTDLG pd;*/
/*PrintDlg(&pd);*/

View File

@ -446,7 +446,6 @@ static LRESULT CALLBACK ListWndProc(HWND hWnd, UINT message, WPARAM wParam, LPAR
}
default:
return CallWindowProc(g_orgListWndProc, hWnd, message, wParam, lParam);
break;
}
return 0;
}

View File

@ -978,7 +978,6 @@ TaskManagerWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
pRC->bottom = pRC->top + nMinimumHeight;
}
return TRUE;
break;
case WM_SIZE:
/* Handle the window sizing in it's own function */

View File

@ -63,7 +63,6 @@ static void* be_i386_linearize(HANDLE hThread, const ADDRESS64* addr)
return (void*)((le.HighWord.Bits.BaseHi << 24) +
(le.HighWord.Bits.BaseMid << 16) + le.BaseLow +
(DWORD)addr->Offset);
break;
case AddrModeFlat:
return (void*)(DWORD)addr->Offset;
}

View File

@ -2154,7 +2154,6 @@ static BOOL gdb_startup(struct gdb_context* gdbctx, DEBUG_EVENT* de, unsigned fl
case -1: /* error in parent... */
fprintf(stderr, "Cannot create gdb\n");
return FALSE;
break;
default: /* in parent... success */
break;
case 0: /* in child... and alive */

View File

@ -287,7 +287,6 @@ static BOOL prompt_save_changes(void)
{
case IDNO:
return TRUE;
break;
case IDYES:
if(wszFileName[0])