Really depends on what you are trying to achieve.
If you allocate your struct like this:
Order* OrderReqXml = malloc(...);
then, you should indeed check for the pointer being != NULL before assigning values to your struct. A good way would be:
Order* OrderReqXml = malloc(...);
if (OrderReqXml != NULL) {
// fill data
} else { /* error handling */ }
If you obtain the pointer from somewhere else, e.g. from a static structure in memory and you want to check whether the struct has been populated or not, you need to check the single struct elements:
bool structIsNotFilled(Order* o) {
return ((o->fIntOrderNumber == 0) &&
(o->dLocationCode == 0) &&
(o->dQzUser == 0) &&
(o->dSuperUserId == 0))
}
The question then is however, if you wanted to trust this struct in memory to be initialized with zeros. (You must not trust memory allocated with malloc() to be initialized to zero.)
nullafter you have used it several times? – GSerg Aug 24 '12 at 14:00