Added logic to clear edited row and column indices on null pointer error in RAM watch window.
This commit is contained in:
parent
484f299107
commit
c46d3e2a9d
|
@ -936,6 +936,8 @@ static void ramWatch_cell_edited_cb (GtkCellRendererText * cell,
|
|||
|
||||
if ( rw == NULL )
|
||||
{
|
||||
rww->ramWatchEditRowIdx = -1;
|
||||
rww->ramWatchEditColIdx = -1;
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue