Index: trunk/src_plugins/export_svg/svg.c =================================================================== --- trunk/src_plugins/export_svg/svg.c (revision 6991) +++ trunk/src_plugins/export_svg/svg.c (revision 6992) @@ -581,6 +581,9 @@ pcb_coord_t x1, y1, x2, y2, diff = 0; pcb_angle_t sa, ea; + if (width == 0) /* degenerate case: do not draw r=0 arc, some rendering engines may not like that */ + return; + TRX(cx); TRY(cy); /* calculate start and end angles considering flip */