码迷,mamicode.com
首页 > 其他好文 > 详细

判断野指针,无效指针

时间:2016-09-25 14:26:30      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

 

该方法仅适用于windows

 1 int is_invalid_ptr(void* memory_pointer)
 2 {
 3     if (NULL == memory_pointer) { 
 4         return 1; 
 5     }
 6 
 7     __try {
 8         return *((int*)memory_pointer) ? 0 : 0;
 9     }
10     __except (1) {
11         return 1; /** exception_code(); STATUS_ACCESS_VIOLATION*/
12     }
13 }

 

判断野指针,无效指针

标签:

原文地址:http://www.cnblogs.com/baigoogledu/p/5905774.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!