]> git.eshelyaron.com Git - emacs.git/commitdiff
(send_process): Delete unused temp_buf.
authorKenichi Handa <handa@m17n.org>
Sat, 27 Sep 2003 00:25:40 +0000 (00:25 +0000)
committerKenichi Handa <handa@m17n.org>
Sat, 27 Sep 2003 00:25:40 +0000 (00:25 +0000)
src/process.c

index 0916fd171d4d99f98ddf187cc8808c49970b6cc6..d04f8c03b4f876ee93b05aa5d2bf8e8d540cb5da 100644 (file)
@@ -5054,7 +5054,6 @@ send_process (proc, buf, len, object)
     {
       int require = encoding_buffer_size (coding, len);
       int from_byte = -1, from = -1, to = -1;
-      unsigned char *temp_buf = NULL;
 
       if (BUFFERP (object))
        {
@@ -5090,8 +5089,6 @@ send_process (proc, buf, len, object)
                     len, SBYTES (object));
       len = coding->produced;
       buf = SDATA (object);
-      if (temp_buf)
-       xfree (temp_buf);
     }
 
 #ifdef VMS