* bfd-target.c (target_bfd_reopen): Update.
[deliverable/binutils-gdb.git] / gdb / m32r-rom.c
index ffda6f91b7f32573890006fe69d49e2a1fc3c42b..5678f13dc3bce8763890b185e96c0abe061f418d 100644 (file)
@@ -130,7 +130,8 @@ m32r_load (char *filename, int from_tty)
   if (filename == NULL || filename[0] == 0)
     filename = get_exec_file (1);
 
-  abfd = gdb_bfd_ref (bfd_openr (filename, 0));
+  abfd = bfd_openr (filename, 0);
+  gdb_bfd_ref (abfd);
   if (!abfd)
     error (_("Unable to open file %s."), filename);
   cleanup = make_cleanup_bfd_unref (abfd);
@@ -529,7 +530,8 @@ m32r_upload_command (char *args, int from_tty)
     printf_filtered (" -- Ethernet load complete.\n");
 
   gettimeofday (&end_time, NULL);
-  abfd = gdb_bfd_ref (bfd_openr (args, 0));
+  abfd = bfd_openr (args, 0);
+  gdb_bfd_ref (abfd);
   cleanup = make_cleanup_bfd_unref (abfd);
   if (abfd != NULL)
     {          /* Download is done -- print section statistics.  */
This page took 0.026651 seconds and 4 git commands to generate.