The title may be a little bit of a misnomer... just because I'm not sure if my char pointer is pointing to NULL, or if it's just pointing to a char array of size 0.
So I have
char* data = getenv("QUERY_STRING");
And I want to check if data is null (or is length < 1). I've tried:
if(strlen(data)<1)
but I get an error:
==24945== Invalid read of size 1
==24945== at 0x8048BF9: main (in /cpp.cgi)
==24945== Address 0x1 is not stack'd, malloc'd or (recently) free'd
I've also tried
if(data == NULL)
but with the same result.
What's going on here? I've already tried cout with the data, and that works fine. I just can't seem to check if it's null or empty.
I realize these are two different things (null and empty). I want to know which one data would be here, and how to check if it's null/empty.
const char*, notchar*. From the (C++) docs:The string pointed by the pointer returned by this function shall not be modified by the program.– Cameron Apr 26 '12 at 20:13