Hello,
I am sorry if I am to the wrong list with this question.

I just added something to some bugs of package dvb-apps.

This message seems to be forwarded to the list [email protected].

But as I am not subscribed this list messages bounces back to me.

Attached is one of these emails.

I asked first at [email protected] and got this response:


-------- Weitergeleitete Nachricht --------
Betreff: Re: Anwers to Debian bug reports are bouncing
Datum: Wed, 6 May 2015 22:41:10 +0200
Von: Johannes Stezenbach <...>
An: Bernhard Übelacker <[email protected]>

On Wed, May 06, 2015 at 10:01:19PM +0200, Bernhard Übelacker wrote:
> Hello,
...

The linux-dvb list is closed, please send your
mail to [email protected] instead.
I hope you can fix this in the Debian bugtracker.

HTH,
Johannes
--------


Kind regards,
Bernhard
--- Begin Message ---
You are not allowed to post to this mailing list, and your message has
been automatically rejected.  If you think that your messages are
being rejected in error, contact the mailing list owner at
[email protected].

--- Begin Message ---
found 715667 1.1.1+rev1500-1
stop



Hello,
azap crashes because of a strlen(0) because homedir/$HOME is not set.

Minimal statement to reproduce:
        $ env -i azap 1

Following patch exits immediately after the
message, therefore avoids the crash.

Kind regards,
Bernhard



--- azap.c.orig 2015-05-06 20:57:36.310093306 +0200
+++ azap.c      2015-05-06 21:03:12.507780772 +0200
@@ -327,8 +327,10 @@ int main(int argc, char **argv)
 
        if (!confname)
        {
-               if (!homedir)
+               if (!homedir) {
                        ERROR ("$HOME not set");
+                       return -1;
+               }
                confname = malloc (strlen(homedir) + strlen(CHANNEL_FILE) + 1);
                memcpy (confname, homedir, strlen(homedir));
                memcpy (confname + strlen(homedir), CHANNEL_FILE,



--- End Message ---

--- End Message ---
_______________________________________________
pkg-vdr-dvb-devel mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-vdr-dvb-devel

Reply via email to