From 421709f8c2710c027d994fa6fe0fe987c9e68003 Mon Sep 17 00:00:00 2001 From: Ales Hvezda Date: Tue, 5 Dec 2006 03:24:07 +0000 Subject: [PATCH] Added missing init of toplevel->line_style (all variables in the TOPLEVEL structure should be initalized) --- libgeda/ChangeLog | 5 +++++ libgeda/src/s_toplevel.c | 1 + 2 files changed, 6 insertions(+) diff --git a/libgeda/ChangeLog b/libgeda/ChangeLog index 8c15edc25..c76f255c2 100644 --- a/libgeda/ChangeLog +++ b/libgeda/ChangeLog @@ -1,3 +1,8 @@ +2006-12-04 Ales Hvezda + + * src/s_toplevel.c: Added missing init of toplevel->line_style + (all variables in the TOPLEVEL struct ure should be initalized). + 2006-12-02 Mike Jarabek * include/defines.h include/struct.h: Added diff --git a/libgeda/src/s_toplevel.c b/libgeda/src/s_toplevel.c index bb6ac5c9f..2b3c588dd 100644 --- a/libgeda/src/s_toplevel.c +++ b/libgeda/src/s_toplevel.c @@ -293,6 +293,7 @@ TOPLEVEL *s_toplevel_new (void) toplevel->pin_style = 0; toplevel->net_style = 0; toplevel->bus_style = 0; + toplevel->line_style = 0; toplevel->zoom_with_pan = 0; toplevel->actionfeedback_mode = OUTLINE; -- 2.11.4.GIT