Commit f48edcc6 authored by Sam Hocevar's avatar Sam Hocevar

* ./modules/gui/win32/menu.cpp: fixed a crash in the navigation menu

    generation.
parent 263a9544
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* menu.cpp: functions to handle menu items * menu.cpp: functions to handle menu items
***************************************************************************** *****************************************************************************
* Copyright (C) 2002-2003 VideoLAN * Copyright (C) 2002-2003 VideoLAN
* $Id: menu.cpp,v 1.9 2003/01/24 12:01:03 sam Exp $ * $Id: menu.cpp,v 1.10 2003/01/26 00:51:43 sam Exp $
* *
* Authors: Olivier Teuliere <ipkiss@via.ecp.fr> * Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
* *
...@@ -926,7 +926,7 @@ void __fastcall TMenusGen::NavigationMenu( TMenuItem *Root, ...@@ -926,7 +926,7 @@ void __fastcall TMenusGen::NavigationMenu( TMenuItem *Root,
Root->Enabled = false; Root->Enabled = false;
Root->Clear(); Root->Clear();
i_title_nb = p_intf->p_sys->p_input->stream.i_area_nb; i_title_nb = p_intf->p_sys->p_input->stream.i_area_nb - 1;
/* loop on titles */ /* loop on titles */
for( unsigned int i_title = 1; i_title <= i_title_nb; i_title++ ) for( unsigned int i_title = 1; i_title <= i_title_nb; i_title++ )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment