Changeset 107


Ignore:
Timestamp:
Dec 10, 2003, 12:25:34 AM (21 years ago)
Author:
Gary Byers
Message:

Don't free() a pointer that was just realloc()ed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/lisp-kernel/thread_manager.c

    r53 r107  
    1515*/
    1616
     17/*
     18  $Log$
     19  Revision 1.5  2003/12/10 08:25:34  gb
     20  Don't free() a pointer that was just realloc()ed.
     21
     22*/
    1723
    1824#include "Threads.h"
     
    12451251    new_bytes -= sizeof(LispObj);
    12461252  }
    1247   free(old_tlb);
    12481253  tcr->tlb_pointer = new_tlb;
    12491254  tcr->tlb_limit = new_limit;
Note: See TracChangeset for help on using the changeset viewer.