Added logic to clear edited row and column indices on null pointer error in RAM watch window.

This commit is contained in:
Matthew Budd 2020-05-23 16:22:56 -04:00
parent 484f299107
commit c46d3e2a9d
1 changed files with 2 additions and 0 deletions

View File

@ -936,6 +936,8 @@ static void ramWatch_cell_edited_cb (GtkCellRendererText * cell,
if ( rw == NULL )
{
rww->ramWatchEditRowIdx = -1;
rww->ramWatchEditColIdx = -1;
return;
}