[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: bug#1650: 23.0.60; raw-text-dos memory corruption
From: |
Johan Bockgård |
Subject: |
Re: bug#1650: 23.0.60; raw-text-dos memory corruption |
Date: |
Sat, 02 May 2009 05:45:07 +0200 |
User-agent: |
Gnus/5.110009 (No Gnus v0.9) Emacs/23.0.90 (gnu/linux) |
Chong Yidong <address@hidden> writes:
> I haven't been able to reproduce this. Can anyone on this list
> reproduce this? If so, please try to debug it.
Ok, I've found a rather minimal recipe.
Start one Emacs and evaluate the following:
(make-network-process
:name "foo" :server t
:host "localhost" :service 8888
:sentinel (lambda (proc stat)
(when (string-match "^open from" stat)
(process-send-string proc (make-string 5000 ?\r)))))
Start a second Emacs and run this:
(let* ((coding-system-for-read 'raw-text-dos))
(open-network-stream "foo" "foo" "localhost" 8888))
- Re: bug#1650: 23.0.60; raw-text-dos memory corruption,
Johan Bockgård <=