mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- Fixed possible NULL pointer deref in PrintDLS().
SVN r4256 (trunk)
This commit is contained in:
parent
c63273348a
commit
e935cf9e62
1 changed files with 1 additions and 1 deletions
|
@ -992,7 +992,7 @@ void PrintDLS(DLS_Data *data)
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
if ( data->waveList ) {
|
if ( data->waveList && data->ptbl ) {
|
||||||
DWORD i;
|
DWORD i;
|
||||||
printf("Waves:\n");
|
printf("Waves:\n");
|
||||||
for ( i = 0; i < data->ptbl->cCues; ++i ) {
|
for ( i = 0; i < data->ptbl->cCues; ++i ) {
|
||||||
|
|
Loading…
Reference in a new issue