From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19067 invoked by alias); 13 Apr 2005 01:10:56 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 18977 invoked by uid 48); 13 Apr 2005 01:10:48 -0000 Date: Wed, 13 Apr 2005 01:10:00 -0000 Message-ID: <20050413011048.18974.qmail@sourceware.org> From: "mueller at kde dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20050107191510.19317.mueller@kde.org> References: <20050107191510.19317.mueller@kde.org> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug c++/19317] [4.1 Regression] removing a temporary return value when we cannot X-Bugzilla-Reason: CC X-SW-Source: 2005-04/txt/msg01676.txt.bz2 List-Id: ------- Additional Comments From mueller at kde dot org 2005-04-13 01:10 ------- the konqueror startup crash is fixed by: @@ -3716,7 +3716,7 @@ void KonqMainWindow::initActions() m_paActivateNextTab = new KAction( i18n( "Activate Next Tab" ), "tab_next", QApplication::reverseLayout() ? KStdAccel::tabPrev() : KStdAccel::tabNext(), this, SLOT( slotActivateNextTab() ), actionCollection(), "activatenexttab" ); m_paActivatePrevTab = new KAction( i18n( "Activate Previous Tab" ), "tab_previous", QApplication::reverseLayout() ? KStdAccel::tabNext() : KStdAccel::tabPrev(), this, SLOT( slotActivatePrevTab() ), actionCollection(), "activateprevtab" ); - char actionname[15]; + char actionname[16]; for (int i=1;i<13;i++) { sprintf(actionname,"activate_tab_%02d", i); new KAction(i18n("Activate Tab %1").arg(i), 0, this, SLOT(slotActivateTab()), actionCollection(), actionname); so that is mood. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19317