[Kicad-developers] wxString conversion issues in pcbnew/netlist.cpp [PATCH]

2014-08-12 Thread Andrew Zonenberg
I was investigating some memory corruption segfaults with Valgrind and found that the netlist-import code in pcbnew is calling wxString::Printf() with a char* using the %s format specifier. While this may look right, the _() macro (through many levels of indirection) converts %s to %ls, which expe

[Kicad-developers] [patch] introduce text checking in pcbnew's DRC

2014-08-12 Thread Simon Schumann
Hello, here's a patch to tackle https://bugs.launchpad.net/kicad/+bug/1201090 It brings text checking on par with keepoutAreas (in fact I used it as template). At the moment boundary box is used as area to check (per line checking is being considered). It lacks pin checking (as well as keepo

Re: [Kicad-developers] Fix for uninitialized variables and unchecked input buffers in eeschema [PATCH]

2014-08-12 Thread Dick Hollenbeck
committed in rev. 5065. Thanks. ___ Mailing list: https://launchpad.net/~kicad-developers Post to : kicad-developers@lists.launchpad.net Unsubscribe : https://launchpad.net/~kicad-developers More help : https://help.launchpad.net/ListHelp

Re: [Kicad-developers] underlay for reconstructing boards

2014-08-12 Thread Vesa Solonen
12/08/14, 10:39, Cirilo Bernardo kirjoitti: > Thanks Vesa, I'll have a look through. At the moment I'm thinking > as minimal a system as possible. I had thought about items like > automatic scaling/rotation and feature recognition, but that's > probably best done in a stand-alone app. I'll consid

[Kicad-developers] Fix for uninitialized variables and unchecked input buffers in eeschema [PATCH]

2014-08-12 Thread Andrew Zonenberg
I ran valgrind on eeschema and found a couple of trivially fixable bugs: 1) EDA_DRAW_FRAME::m_showOriginAxis is never initialized in the constructor 2) LIB_RECTANGLE and related classes sscanf data read from a file using "%s" without field limits, which can cause problems with malformed/really lon

Re: [Kicad-developers] underlay for reconstructing boards

2014-08-12 Thread Cirilo Bernardo
- Original Message - > From: Vesa Solonen > To: kicad-developers@lists.launchpad.net > Cc: > Sent: Tuesday, August 12, 2014 8:57 AM > Subject: Re: [Kicad-developers] underlay for reconstructing boards > > 03/08/14, 03:09, Cirilo Bernardo kirjoitti: > >> Any comments/suggestions/object