[dev] [st] [patch] multi-line selection causes core dump on OpenBSD

2013-09-21 Thread Maurice Quennet
Hello everyone, I'm running OpenBSD 5.3 amd64 release version with the most current st version from git and I noticed that st was crashing and dumping core when selecting multiple lines whith the cursor. This happens, because on line 964 of st.c (gp-1)->mode is accessed, although gp is still poin

Re: [dev] hggit and the suckless repos

2013-09-21 Thread Sam Ḥilluc
On 09/21/2013 05:12 PM, Chris Down wrote: > What does this have to do with dulwich? because the hg-git extension uses dulwich internally. And now I know it's a dulwich problem, because: dulwich clone http://git.suckless.org/dwm gives the same error.

Re: [dev] hggit and the suckless repos

2013-09-21 Thread Chris Down
On 2013-09-21 14:19, Sam Ḥilluc wrote: > Ok, I'll investigate if it's a probelm with hggit or the dulwich backend > and report the bug. What does this have to do with dulwich? pgpBK757lAc5S.pgp Description: PGP signature

[dev] [dvtm] [PATCH] close(c->pty) to stop leaks

2013-09-21 Thread Mark Edgar
I noticed that pty numbers are never recycled after closing each window. -Mark diff --git a/dvtm.c b/dvtm.c index bff057b..ae0c8f2 100644 --- a/dvtm.c +++ b/dvtm.c @@ -665,6 +665,7 @@ setup() { static void destroy(Client *c) { + close(c->pty); if (sel == c) f

[dev] [st] [PATCH] Avoid buffer overflows in the case of key-mapped strings.

2013-09-21 Thread Mark Edgar
This patch avoids a buffer overflow in kpress() if a key-mapped string longer than 31 characters is given in config.h. It also changes the maximum allowable key-mapped string length to a (likely) more reasonable 16. -Mark key-str.patch Description: Binary data

Re: [dev] hggit and the suckless repos

2013-09-21 Thread Sam Ḥilluc
On 09/21/2013 12:09 AM, Alexander Huemer wrote: > Well, on suckless.org the http clone support is provided by cgit (the > git http frontend). Obviously there is some incompatibility. Maybe you > want to let the hg-git guys know that. > > Kind regards, > -Alex Ok, I'll investigate if it's a probel