1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-06-28 23:21:59 +03: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:
Werner Almesberger 2016-08-22 06:47:28 -03:00
parent 0550b016ee
commit 28baddb59f

View File

@ -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;