unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Eli Zaretskii <eliz@gnu.org>
To: "Lukas Fürmetz" <fuermetz@mailbox.org>
Cc: emacs-devel@gnu.org
Subject: Re: [PATCH] Add nil check for decoding buffer
Date: Wed, 11 Apr 2018 20:00:59 +0300	[thread overview]
Message-ID: <83d0z53cfo.fsf@gnu.org> (raw)
In-Reply-To: <877epepwi1.fsf@mailbox.org> (message from Lukas Fürmetz on Tue, 10 Apr 2018 23:44:22 +0200)

> From: Lukas Fürmetz <fuermetz@mailbox.org>
> Date: Tue, 10 Apr 2018 23:44:22 +0200
> 
> This patch prevents a emacs crash under Windows for me. Sometimes the
> buffer is split between \r\n and the \n is carried over, but the
> decoding_buf is NIL, so "SCHARS (p->decoding_buf)" leads to a SEGFAULT.
> 
> Would be nice, if this is backported to emacs-26..
> 
> Best regards,
> Lukas
> 
> ---
>  src/process.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/process.c b/src/process.c
> index c357a8bdc3..ab2e6ce4da 100644
> --- a/src/process.c
> +++ b/src/process.c
> @@ -5996,7 +5996,7 @@ read_and_dispose_of_process_output (struct Lisp_Process *p, char *chars,
> 
>    if (coding->carryover_bytes > 0)
>      {
> -      if (SCHARS (p->decoding_buf) < coding->carryover_bytes)
> +      if (NILP (p->decoding_buf) || (SCHARS (p->decoding_buf) < coding->carryover_bytes))
>  	pset_decoding_buf (p, make_uninit_string (coding->carryover_bytes));
>        memcpy (SDATA (p->decoding_buf), coding->carryover,
>  	      coding->carryover_bytes);

Thanks, but I don't think this is the right fix for the problem.
Every process object must have an associated decoding_buf, so if some
process doesn't, it's a bug in that process's creation code.  My
reading of the code is that all the process types we support have
decoding_buf defined during creation -- except one: make-pipe-process
fails to do that.  So the fix should be in make-pipe-process.

Is the problem reproducible, or do you remember what you did when it
happened?  I'd like to make sure that indeed some pipe process was
involved in the crash, because otherwise I don't see how it could
happen.



  reply	other threads:[~2018-04-11 17:00 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-10 21:44 [PATCH] Add nil check for decoding buffer Lukas Fürmetz
2018-04-11 17:00 ` Eli Zaretskii [this message]
2018-04-12 15:24   ` Lukas Fürmetz
2018-04-12 15:29     ` Eli Zaretskii
2018-04-12 15:34       ` Lukas Fürmetz
2018-04-12 16:24         ` Eli Zaretskii
2018-04-13  8:47           ` Lukas Fürmetz
2018-04-13 12:49             ` Eli Zaretskii

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=83d0z53cfo.fsf@gnu.org \
    --to=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    --cc=fuermetz@mailbox.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).