How to handle tinyxml null pointer returned on GetText()

2.8k Views Asked by At
TiXmlElement *pElem;    
std::string StatusResponse;
pElem = hResponse.FirstChild("StatusResponse").Element();

if (pElem)
    StatusResponse = pElem->GetText();

If pElem is valid but the element contains no text, pElem->GetText() returns a NULL pointer, causing an exception. How should I handle this?

Thanks.

1

There are 1 best solutions below

2
On BEST ANSWER
if (pElem && pElem->GetText())
    StatusResponse = pElem->GetText();