From 7f16997abec6e05a213f92e52a74987cb8949e7c Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sun, 15 Oct 1995 00:34:47 +0000 Subject: [PATCH] Fix typo that prematurely deallocated a message buffer. --- v7/src/microcode/os2cthrd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } } -- 2.25.1