projects
/
platform
/
upstream
/
dbus.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'dbus-1.4' of ssh://git.freedesktop.org/git/dbus/dbus into dbus-1.4
[platform/upstream/dbus.git]
/
test
/
test-segfault.c
1
/* This is simply a process that segfaults */
2
#include <config.h>
3
#include <stdlib.h>
4
#ifdef HAVE_SIGNAL_H
5
#include <signal.h>
6
#endif
7
8
#ifdef HAVE_SETRLIMIT
9
#include <sys/resource.h>
10
#endif
11
12
int
13
main (int argc, char **argv)
14
{
15
char *p;
16
17
#if HAVE_SETRLIMIT
18
struct rlimit r = { 0, };
19
20
getrlimit (RLIMIT_CORE, &r);
21
r.rlim_cur = 0;
22
setrlimit (RLIMIT_CORE, &r);
23
24
raise (SIGSEGV);
25
#endif
26
p = NULL;
27
*p = 'a';
28
29
return 0;
30
}