return value to be compatible with gdb_run_cmd in lib/gdb.exp.
	Remove call to gdb_unload.
+2007-07-18  Kevin Buettner  <kevinb@redhat.com>
+
+       * config/sid.exp (gdb_load): Add test for empty argument.  Adjust
+       return value to be compatible with gdb_run_cmd in lib/gdb.exp.
+       Remove call to gdb_unload.
+
 2007-07-17  Pedro Alves  <pedro_alves@portugalmail.pt>
            Daniel Jacobowitz  <dan@codesourcery.com>
 
 
     global gdb_prompt
     global retval
 
-    gdb_unload
-    if [gdb_file_cmd $arg] then { return -1 }
+    if { $arg != "" } {
+       if [gdb_file_cmd $arg] then { return -1 }
+    }
+
     gdb_target_sid
 
     send_gdb "load\n"
            if $verbose>1 then {
                send_user "Loaded $arg into $GDB\n"
            }
-           set retval 1;
+           set retval 0;
        }
        -re "$gdb_prompt $"     {
            if $verbose>1 then {