graphics/grX11su1.c: Dereference of null pointer

Looks like the code below requires w!=NULL to do anything useful.
So when w==NULL we don't continue processing X11 Event.

SonarCloud
graphics/grX11su1.c:895 Dereference of null pointer
https://sonarcloud.io/project/issues?open=AZJB163RNGfDNup0Ri4p&id=dlmiles_magic
This commit is contained in:
Darryl L. Miles 2024-09-29 23:00:00 +01:00 committed by Tim Edwards
parent 01f9f2246b
commit 60fe6427da
1 changed files with 2 additions and 0 deletions

View File

@ -890,6 +890,8 @@ grX11Stdin()
entry = HashLookOnly(&grX11WindowTable, VisEvent->window);
w = (entry)?(MagWindow *)HashGetValue(entry):0;
if(!w)
break;
switch(VisEvent->state)
{