gnu-arch-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Gnu-arch-users] Emgergency release of tla-1.2.1pre1


From: Matthieu Moy
Subject: Re: [Gnu-arch-users] Emgergency release of tla-1.2.1pre1
Date: Sun, 18 Apr 2004 03:18:29 +0200
User-agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.2 (gnu/linux)

address@hidden (James Blackwell) writes:

> tla-1.2.1pre1 is available

While talking about a new release,  I've posted a bug and a patch some
time ago about WebDAV, and it doesn't seem to have been applied.

The  code used  to extract  the  password from  the URL  uses a  buggy
implementation of strncpy that just forgets the final '\0'. 

The bug makes tla unuseable  with webdav authentication, and the patch
is trivial, so, I think it's worth including it.

--- str.c~      Wed Feb 11 00:17:10 2004
+++ str.c       Thu Mar  4 14:14:29 2004
@@ -540,6 +540,7 @@
           *to++ = *from++;
           --n;
         }
+      *to = 0;
     }
   while (n--)
     *to++ = 0;


-- 
Matthieu




reply via email to

[Prev in Thread] Current Thread [Next in Thread]