X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=fish%2Freopen.c;h=585bbd231204a385b7ead89aba27b7bc412ee560;hb=871e1cfe3ae28028eaa4be7d87d7c43f68b4d5ec;hp=c455a91893705f87c78e88e2d96ea79bb02495cc;hpb=319e946b92e175c05cdd1fdcb85c9b86f5631011;p=libguestfs.git diff --git a/fish/reopen.c b/fish/reopen.c index c455a91..585bbd2 100644 --- a/fish/reopen.c +++ b/fish/reopen.c @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include @@ -83,5 +83,12 @@ run_reopen (const char *cmd, size_t argc, char *argv[]) guestfs_close (g); g = g2; + /* We don't bother copying event handlers over to the new handle, + * but we have to reset the list because they were registered + * against the old handle. + */ + free_event_handlers (); + init_event_handlers (); + return 0; }