Changeset 453 for branches/thune/thread_safe/win32/os.c
- Timestamp:
- 08/25/07 22:49:09 (15 months ago)
- Files:
-
- 1 modified
-
branches/thune/thread_safe/win32/os.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/thune/thread_safe/win32/os.c
r447 r453 1 1 /*============================================================================ 2 2 Thune 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 … … 326 326 continue; 327 327 328 cell = ur_appendCell( blk, UT_STRING /*UT_FILE*/ ); 329 ur_setSeries( cell, ur_makeString(fileinfo.name, -1), 0 ); 328 // Mark cell as unset in case GC is called by ur_makeString. 329 cell = ur_appendCell( blk, UT_UNSET ); 330 ur_makeString( cell, fileinfo.name, -1 ); 330 331 } 331 332 while( _findnext( handle, &fileinfo ) != -1 );
