mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-04 23:05:21 +02:00
kicad/pl-parse.c (process_obj): also initialize edx and edy
We don't really need to, but valgrind complains about it.
This commit is contained in:
parent
0550b016ee
commit
28baddb59f
@ -257,7 +257,7 @@ static bool process_obj(struct pl_ctx *pl, const struct expr *e,
|
||||
obj->s = NULL;
|
||||
obj->repeat = 1;
|
||||
obj->x = obj->y = obj->ex = obj->ey = 0;
|
||||
obj->dx = obj->dy = 0;
|
||||
obj->dx = obj->dy = obj->edx = obj->edy = 0;
|
||||
obj->incrx = 0;
|
||||
obj->incry = 0;
|
||||
obj->incrlabel = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user