2014-11-10 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in 'rdlogedit/edit_log.cpp' that allowed GUID data
	in the clipboard to be transferred between logs.
This commit is contained in:
Fred Gleason
2014-11-10 08:24:17 -05:00
parent 032a71e8b9
commit 567379324d
2 changed files with 9 additions and 0 deletions

View File

@@ -14645,3 +14645,6 @@
segfault when dropping a cart on the log list.
2014-11-06 Fred Gleason <fredg@paravelsystems.com>
* Incremented the package version to 2.10.1int00.
2014-11-10 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'rdlogedit/edit_log.cpp' that allowed GUID data
in the clipboard to be transferred between logs.

View File

@@ -1153,6 +1153,9 @@ void EditLog::okData()
#ifndef WIN32
edit_player->stop();
#endif // WIN32
for(unsigned i=0;i<edit_clipboard->size();i++) {
edit_clipboard->at(i).clearExternalData();
}
done(0);
}
@@ -1183,6 +1186,9 @@ void EditLog::cancelData()
#ifndef WIN32
edit_player->stop();
#endif // WIN32
for(unsigned i=0;i<edit_clipboard->size();i++) {
edit_clipboard->at(i).clearExternalData();
}
done(1);
}