After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 690787 - Crash on computing member relations
Crash on computing member relations
Status: VERIFIED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.3
Other Windows
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2012-12-27 20:48 UTC by Wilfred Mott
Modified: 2013-01-20 17:43 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Testcase (267 bytes, application/jar)
2012-12-27 20:48 UTC, Wilfred Mott
Details

Description Wilfred Mott 2012-12-27 20:48:41 UTC
Created attachment 232300 [details]
Testcase

The minimized testcase:

-----
[a.h]
-----

class c {
    virtual f(){}
};

class c1
{
    f(){}
};

class c2 : c1
{
    f(){}
}

-----
[b.h]
-----

class c2
{
    f(){}
};

class c1 : c2
{
    f(){}
}

-----

This crashes in Doxygen 1.8.3 on Windows 7 SP1 (64 bit). 1.8.2 was affected too, so it's not a recent regression.
Comment 1 Dimitri van Heesch 2013-01-06 13:51:51 UTC
Confirmed. Should be fixed in the next subversion update.
Comment 2 Dimitri van Heesch 2013-01-20 13:35:03 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.8.3.1. Please verify if this is indeed the case. Reopen the
bug if you think it is not fixed and please include any additional information
that you think can be relevant.
Comment 3 Wilfred Mott 2013-01-20 17:43:37 UTC
It crashes no more in 1.8.3.1, thanks for the fix!