repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix: Null pointer dereference in ldlex.l
[binutils-gdb.git]
/
gdb
/
testsuite
/
gdb.base
/
debug-expr.c
blob
f7c3dbc5b8e19c674da95022039b24b3463a72ee
1
char
array
[
4
];
2
3
int
4
call_me
(
int
*
arg
)
5
{
6
return
(*
arg
) -
1
;
7
}
8
9
int
val
=
1
;
10
11
int
12
main
()
13
{
14
return
call_me
(&
val
);
15
}