Search
lxdream.org :: lxdream/src/loader.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/loader.c
changeset 825:2ac7ceccd775
prev736:a02d1475ccfd
next1036:af7b0c5905dd
author nkeynes
date Sun May 24 08:30:35 2009 +0000 (14 years ago)
permissions -rw-r--r--
last change 000068: Handle sh4_finalize_instruction being called from a syscall (assertion failure)
(Also introduce IS_SYSCALL() macro to tidy up slightly)
file annotate diff log raw
1.1 --- a/src/loader.c Mon Jul 14 07:44:42 2008 +0000
1.2 +++ b/src/loader.c Sun May 24 08:30:35 2009 +0000
1.3 @@ -108,7 +108,7 @@
1.4 void file_load_postload( const gchar *filename, int pc )
1.5 {
1.6 const gchar *bootstrap_file = lxdream_get_config_value(CONFIG_BOOTSTRAP);
1.7 - if( bootstrap_file != NULL ) {
1.8 + if( bootstrap_file != NULL && bootstrap_file[0] != '\0' ) {
1.9 /* Load in a bootstrap before the binary, to initialize everything
1.10 * correctly
1.11 */
.