Changeset - r2412:6a59d720d9bc
[Not reviewed]
master
0 1 0
tron - 19 years ago 2005-09-11 09:24:17
tron@openttd.org
(svn r2938) -Fix: Exit the child of the extmidi backend with _exit() instead of exit(), because we don't want any atexit handlers - especially flushing output streams - to run, if exec() fails
Half a credit is due to Darkvater (;
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
music/extmidi.c
Show inline comments
 
@@ -81,7 +81,7 @@ static void DoPlay(void)
 
					#endif
 
				}
 
			}
 
			exit(1);
 
			_exit(1);
 
		}
 

	
 
		case -1:
0 comments (0 inline, 0 general)