From: Chris Hanson Date: Sun, 15 Oct 1995 00:34:47 +0000 (+0000) Subject: Fix typo that prematurely deallocated a message buffer. X-Git-Tag: 20090517-FFI~5893 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=7f16997abec6e05a213f92e52a74987cb8949e7c;p=mit-scheme.git Fix typo that prematurely deallocated a message buffer. --- diff --git a/v7/src/microcode/os2cthrd.c b/v7/src/microcode/os2cthrd.c index 553c3964c..efc45c874 100644 --- a/v7/src/microcode/os2cthrd.c +++ b/v7/src/microcode/os2cthrd.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: os2cthrd.c,v 1.6 1995/04/28 07:04:56 cph Exp $ +$Id: os2cthrd.c,v 1.7 1995/10/15 00:34:47 cph Exp $ Copyright (c) 1994-95 Massachusetts Institute of Technology @@ -252,8 +252,8 @@ OS2_readahead_buffer_rubout (readahead_buffer_t * buffer) (buffer -> tail) = prev; } OS_free (tail); + OS2_destroy_message (message); } - OS2_destroy_message (message); return (c); } }