unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: segfault crash when loading certain rmail files
@ 2002-07-09  0:07 Kenichi Handa
  0 siblings, 0 replies; 10+ messages in thread
From: Kenichi Handa @ 2002-07-09  0:07 UTC (permalink / raw)
  Cc: emacs-devel, rehmann

Richard Stallman <rms@gnu.org> writes:
>     I think this fix should also be installed in RC.  Shall I do
>     that?

> If it seems safe to you, please install it in RC.

Done.

---
Ken'ichi HANDA
handa@etl.go.jp

^ permalink raw reply	[flat|nested] 10+ messages in thread
* Re: segfault crash when loading certain rmail files
@ 2002-06-24  0:46 Kenichi Handa
  2002-06-24 19:39 ` Richard Stallman
  0 siblings, 1 reply; 10+ messages in thread
From: Kenichi Handa @ 2002-06-24  0:46 UTC (permalink / raw)
  Cc: emacs-devel, rehmann, rms

Kenichi Handa <handa@etl.go.jp> writes:
> So, I can work on the following matter by myself.  If any of
> you have already started to work on it, please let me know.

I've just installed a fix in HEAD branch.

I think this fix should also be installed in RC.  Shall I do
that?

---
Ken'ichi HANDA
handa@etl.go.jp

^ permalink raw reply	[flat|nested] 10+ messages in thread
* Re: segfault crash when loading certain rmail files
@ 2002-06-17  6:13 Kenichi Handa
  2002-06-21 11:11 ` Kenichi Handa
  0 siblings, 1 reply; 10+ messages in thread
From: Kenichi Handa @ 2002-06-17  6:13 UTC (permalink / raw)
  Cc: rms, emacs-devel

Ulf Rehmann <rehmann@mathematik.uni-bielefeld.de> writes:
> I turned out that the crash can be triggered, for emacs 21.2, by
> loading any file just containing the character (decimal) 128, if this
> file is gzipped and visited by find-file and if "automatic file
> de/compression" is toggled "on".

> No crash with emacs 20.7.

Thank you for the report.  The following change will fix the
problem.

(1) Fix Fcall_process (in callproc.c).

We have this code at line 786.

	      repeat_decoding:
		size = decoding_buffer_size (&process_coding, nread);
		decoding_buf = (char *) xmalloc (size);
		
		if (process_coding.cmp_data)
		  process_coding.cmp_data->char_offset = PT;
		
		decode_coding (&process_coding, bufptr, decoding_buf,
			       nread, size);

Before we check process_coding.cmp_data, if process_coding
requires detection (we have the macro
CODING_REQUIRED_DETECTION for checking it), we must call
detect_coding.  And, if the resulting
process_coding.composing is not COMPOSITION_DISABLED, we
must allocate a memory for handling composition data (we
have the function coding_allocate_composition_data, the
second arg must be PT).

(2) Fix detect_eol (in coding.c).

We have this code at 4316

  if (VECTORP (val) && XVECTOR (val)->size == 3)
    {
      int src_multibyte = coding->src_multibyte;
      int dst_multibyte = coding->dst_multibyte;

      setup_coding_system (XVECTOR (val)->contents[eol_type], coding);
      coding->src_multibyte = src_multibyte;
      coding->dst_multibyte = dst_multibyte;
      coding->heading_ascii = skip;
    }

The value of coding->cmp_data must be saved before calling
setup_coding_system and restored after the call.


And, we potentially have the same kind of problem in the
following places (where, decode_coding is called directly).

w16select.c:663:      decode_coding (&coding, htext, buf, truelen, bufsize);
w32fns.c:6688:  decode_coding (&coding, lplogfont->lfFaceName, fontname,
w32select.c:335:	decode_coding (&coding, src, buf, nbytes, bufsize);
xselect.c:1651:	  decode_coding (&coding, data, buf, size, bufsize);
xterm.c:10688:			    decode_coding (&coding, copy_bufptr, p,

Fortunetly, for all those case, we can simply diable
composition handling by setting the member `composing' of
`struct coding_system' to COMPOSITION_DIABLED.  For example,
in the case of xselect.c, before calling decode_coding at
the line 335, what we need is to set coding.composing to
COMPOSITION_DIABLED.

Could someone please install a fix?  I'll verify the result.

---
Ken'ichi HANDA
handa@etl.go.jp

^ permalink raw reply	[flat|nested] 10+ messages in thread
[parent not found: <E17IYLW-0003Ji-00@dea.ur.de>]

end of thread, other threads:[~2002-07-09  0:07 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-07-09  0:07 segfault crash when loading certain rmail files Kenichi Handa
  -- strict thread matches above, loose matches on Subject: below --
2002-06-24  0:46 Kenichi Handa
2002-06-24 19:39 ` Richard Stallman
2002-06-17  6:13 Kenichi Handa
2002-06-21 11:11 ` Kenichi Handa
2002-06-22  6:59   ` Richard Stallman
     [not found] <E17IYLW-0003Ji-00@dea.ur.de>
2002-06-14 15:47 ` Richard Stallman
2002-06-14 20:03   ` Ulf Rehmann
2002-06-15 13:03   ` Ulf Rehmann
2002-06-16 22:36   ` Ulf Rehmann

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).