Changeset 453 for branches/thune/thread_safe/unix/os.c
- Timestamp:
- 08/25/07 22:49:09 (15 months ago)
- Files:
-
- 1 modified
-
branches/thune/thread_safe/unix/os.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/thune/thread_safe/unix/os.c
r447 r453 1 1 /*============================================================================ 2 2 Urlan Interpreter 3 Copyright (C) 2005-200 6Karl Robillard3 Copyright (C) 2005-2007 Karl Robillard 4 4 5 5 This library is free software; you can redistribute it and/or … … 258 258 continue; 259 259 260 cell = ur_appendCell( blk, UT_STRING /*UT_FILE*/ ); 261 ur_setSeries( cell, ur_makeString(cp, -1), 0 ); 260 // Mark cell as unset in case GC is called by ur_makeString. 261 cell = ur_appendCell( blk, UT_UNSET ); 262 ur_makeString( cell, cp, -1 ); 262 263 } 263 264
