Jump to content

Test if object == NULL


Brutile
 Share

Recommended Posts

I have an object declared in a header file in C++ as follows:

Model* model;

 

How do I check to see if it is null?

 

I've tried:

if(model == NULL) and if(model == nullptr)

 

But it seems the object exists, but is not created, therefore it will always be true.

Then when I go:

model->Release();

I get an error.

 

So, how do I check if it has been created?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...