Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Alternative for MFC AfxIsValidAddress in c++ ?

share|improve this question
1  
Take a look at this thetweaker.wordpress.com/2011/01/31/… – micnyk Sep 17 '12 at 16:31
I assume you want to use a AfxIsValidAddress equivalent in a non MFC application on the windows platform. – drescherjm Sep 17 '12 at 16:39
Yes of course, windows. – A.K Sep 18 '12 at 8:53

1 Answer

up vote 3 down vote accepted

That function actually does not do what it says...

It says that it checks the memory range to see whether it is mapped to the space address of the process. But actually, in most versions of the library, it just checks for a NULL value.

The rationale seems to be that in older versions of Windows, it relied on IsBadReadPtr() and friends. But these functions are totally obsolete, and should not be used in newer code (according to MSDN), thus the change in behavior.

That said, if you want to really check for a memory range, your best option is VirtualQuery().

share|improve this answer
1  
More info on why IsBaXXXPtr shouldn't be used. – user786653 Sep 17 '12 at 18:00
1  
@user786653: It is probably a remnant of the 16-bit era when there was no SEH. I have no more details than those in the linked MSDN. Probably it has something to do with multitasking: relying in that function can easily result in race conditions. And if you have to use SEH anyway for these cases, then this function is not necessary. – rodrigo Sep 18 '12 at 7:29
Thank you rodrigo. – A.K Sep 18 '12 at 8:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.