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

Summary: NullPointerException at org.netbeans.modules.cnd.modelimpl.csm.NamespaceImpl.findUidsByPrefix
Product: cnd Reporter: geldouches <geldouches>
Component: -- Other --Assignee: issues@cnd <issues>
Status: RESOLVED DUPLICATE    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
URL: http://statistics.netbeans.org/exceptions/detail.do?id=123914
Issue Type: DEFECT Exception Reporter: 123914
Attachments: stacktrace

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 ***