Issue 90608 - infinite recursion on invalid input
Summary: infinite recursion on invalid input
Status: ACCEPTED
Alias: None
Product: Build Tools
Classification: Code
Component: autodoc (show other issues)
Version: DEV300m18
Hardware: All All
: P4 Trivial (vote)
Target Milestone: ---
Assignee: AOO issues mailing list
QA Contact:
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-06-11 11:22 UTC by mst.ooo
Modified: 2013-08-07 15:34 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description mst.ooo 2008-06-11 11:22:09 UTC
following invalid input will make autodoc contribute to global warming:



#ifndef __com_sun_star_uno_XInterface_idl__
#include <com/sun/star/uno/XInterface.idl>
#endif

interface XNodeA
{
};

interface XNodeB
{
};

interface XNodeAB: XNodeA, XNodeB       // the comma is the problem
{
};
Comment 1 nikolai.pretzell 2008-06-17 11:19:31 UTC
Precondition for using autodoc is: code is accepted by IDL-compiler. But
deadlocks should not happen.  Accepted.