(GCC12) Get rid of warning: the comparison will always evaluate as 'true' for the pointer operand in 'filt->thread_data + (sizetype)((long long unsigned int)i * 48)' must not be NULL [-Waddress]
This commit is contained in:
parent
85cd386cb3
commit
c0c1198d35
|
@ -509,8 +509,6 @@ void rarch_softfilter_free(rarch_softfilter_t *filt)
|
||||||
{
|
{
|
||||||
for (i = 0; i < filt->threads; i++)
|
for (i = 0; i < filt->threads; i++)
|
||||||
{
|
{
|
||||||
if (!&filt->thread_data[i])
|
|
||||||
continue;
|
|
||||||
if (!filt->thread_data[i].thread)
|
if (!filt->thread_data[i].thread)
|
||||||
continue;
|
continue;
|
||||||
slock_lock(filt->thread_data[i].lock);
|
slock_lock(filt->thread_data[i].lock);
|
||||||
|
|
Loading…
Reference in New Issue