This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 153566 - NullPointerException at org.netbeans.modules.cnd.modelimpl.csm.NamespaceImpl.findUidsByPrefix
Summary: NullPointerException at org.netbeans.modules.cnd.modelimpl.csm.NamespaceImpl....
Status: RESOLVED DUPLICATE of bug 153567
Alias: None
Product: cnd
Classification: Unclassified
Component: -- Other -- (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@cnd
URL: http://statistics.netbeans.org/except...
Keywords:
Depends on:
Blocks:
 
Reported: 2008-11-20 17:23 UTC by geldouches
Modified: 2008-11-20 17:43 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter: 123914


Attachments
stacktrace (3.26 KB, text/plain)
2008-11-20 17:24 UTC, geldouches
Details

Note You need to log in before you can comment on or make changes to this bug.
Description geldouches 2008-11-20 17:23:51 UTC
Build: NetBeans IDE 6.5 (Build 200811100001)
VM: Java HotSpot(TM) Client VM, 10.0-b19, Java(TM) SE Runtime Environment, 1.6.0_05-b13
OS: Linux, 2.6.9-67.0.15.EL.cernsmp, i386

User Comments:
GUEST: I was changing the name of the include file from stdint.h to sys/types

GUEST: I just opened a small C-file I am going to implement:

#include "binarytree.h"


struct item {
    int value;
    struct item* left;
    struct item* right;
};

void tree_insert(struct item** root, struct item* item) {
    if (*root == NULL) {
        *root = item;
    }
}

int main(int argc, char**argv)
{

}



Stacktrace: 
java.lang.NullPointerException
Comment 1 geldouches 2008-11-20 17:24:02 UTC
Created attachment 73964 [details]
stacktrace
Comment 2 Vladimir Voskresensky 2008-11-20 17:43:09 UTC

*** This issue has been marked as a duplicate of 153567 ***