Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Niklas Rieken
tcs_pdfs
Commits
80cbc2ef
Commit
80cbc2ef
authored
Apr 26, 2019
by
Niklas Rieken
Browse files
minor chenges, still segfaults
parent
d4160c11
Changes
1
Hide whitespace changes
Inline
Side-by-side
DSAL/C-Code/avltree.c
View file @
80cbc2ef
...
...
@@ -8,8 +8,8 @@ int max(int a, int b) {
Node
*
construct_node
(
int
val
)
{
Node
*
node
;
if
(
(
node
=
malloc
(
sizeof
(
*
node
)))
==
NULL
)
{
node
=
(
Node
*
)
malloc
(
sizeof
(
Node
));
if
(
node
==
NULL
)
{
return
NULL
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment