pinosaur
/
smdp.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7147672
)
fixed -Wmaybe-uninitialized for *line
author
Michael Göhler
<somebody.here@gmx.de>
Thu, 18 Sep 2014 20:17:30 +0000
(22:17 +0200)
committer
Michael Göhler
<somebody.here@gmx.de>
Thu, 18 Sep 2014 20:17:30 +0000
(22:17 +0200)
parser.c
patch
|
blob
|
history
diff --git
a/parser.c
b/parser.c
index
ec341ab
..
9c5d628
100644
(file)
--- a/
parser.c
+++ b/
parser.c
@@
-39,7
+39,7
@@
deck_t *markdown_load(FILE *input) {
deck_t *deck = new_deck();
slide_t *slide = new_slide();
- line_t *line;
+ line_t *line
= NULL
;
cstring_t *text = cstring_init();
// assign first slide to deck