Changeset 3583
- Timestamp:
- 01/08/05 14:17:12 (4 years ago)
- Files:
-
- branches/2.1/src/ChangeLog.Meadow (modified) (1 diff)
- branches/2.1/src/w32proc.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.1/src/ChangeLog.Meadow
r3579 r3583 1 2005-01-08 MIYOSHI Masanori <miyoshi@meadowy.org> 2 3 * w32proc.c (sys_spawnve): Duplicate the whole elements of `argv' 4 to prevent errors in GC. 5 1 6 2005-01-04 Masayuki FUJII <boochang@m4.kcn.ne.jp> 2 7 branches/2.1/src/w32proc.c
r3314 r3583 742 742 char *sepchars = " \t"; 743 743 744 #ifdef MEADOW 745 /* duplicate the whole elements of `argv' to prevent errors in GC. 746 */ 747 targ = argv; 748 while (*targ) 749 { 750 parg = alloca (strlen (*targ) + 1); 751 strcpy (parg, *targ); 752 *targ++ = parg; 753 } 754 #endif 744 755 /* We don't care about the other modes */ 745 756 if (mode != _P_NOWAIT)
