Bug#16075: marked as done (kdevelop crash on startup in building grepview on solaris 7, reported bug #11715 not fixed )

Stephan Kulow owner at bugs.kde.org
Sun Nov 26 16:03:03 UTC 2000


Your message dated Sun, 26 Nov 2000 17:07:43 +0100
with message-id <3A21354F.CB492362 at yahoo.com>
and subject line Bug#16075: kdevelop crash on startup in building grepview on solaris   7, reported  bug #11715  not fixed
has caused the attached bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I'm
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Stephan Kulow
(administrator, KDE bugs database)

Received: (at submit) by bugs.kde.org; 26 Nov 2000 14:28:20 +0000
Received: (qmail 27856 invoked by uid 33); 26 Nov 2000 14:28:20 -0000
Date: 26 Nov 2000 14:28:20 -0000
Message-ID: <20001126142820.27855.qmail at master.kde.org>
To: submit at bugs.kde.org
Subject: kdevelop crash on startup in building grepview on solaris 7, reported  bug #11715  not fixed  
From: gemperle at xs4aqll.nl

Package: kdevelop
Version: 2.0
Severity: crash
Installed from: Solaris 7 ( rebuilt myself)

The bug #11715 Kdevelop crash uppon startup when building grepview,is not fixed at least not on solaris and not on latest build kdevelop20001123.tar.gz. I've traced the problem to be in :
/kdevelop/kdevelop/parts/grepview/grepdlg.cpp  
files_combo->insertStrList(filepatterns);

filepatterns was missing the NULL compared to the other const char *:

replacing 

const char *filepatterns[] = {
    '*.h,*.hxx,*.cpp,*.cc,*.C,*.cxx,*.idl,*.c',
    '*.cpp,*.cc,*.C,*.cxx,*.c',
    '*.h,*.hxx,*.idl',
    '*'
};

BY 

const char *filepatterns[] = {
    '*.h,*.hxx,*.cpp,*.cc,*.C,*.cxx,*.idl,*.c',
    '*.cpp,*.cc,*.C,*.cxx,*.c',
    '*.h,*.hxx,*.idl',
    '*',
    0
};


FIXED THE ISSUE.


(submitted via bugs.kde.org)


-
to unsubscribe from this list send an email to kdevelop-devel-request at kdevelop.org with the following body:
unsubscribe »your-email-address«



More information about the KDevelop-devel mailing list