Changeset 1181 for trunk/xcache.c

Show
Ignore:
Timestamp:
11/29/2012 04:35:14 AM (6 months ago)
Author:
moo
Message:

use null ptr to generate coredump

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/xcache.c

    r1177 r1181  
    349349{ 
    350350    if (xc_test) { 
     351        char *null_ptr = NULL; 
     352        *null_ptr = 0; 
    351353        raise(SIGSEGV); 
    352354    }