openssl / project

Tracking of project related issues
2 stars 1 forks source link

Address Coverity 1604674 #777

Closed nhorman closed 3 months ago

nhorman commented 3 months ago

Need to address https://scan5.scan.coverity.com/#/project-view/60762/10222?selectedIssue=1604674

Its a locking safety question in the quic accept stream code. May be a false positive, but it needs a close look to ensure the protected data is safe outside its associated lock

t8m commented 3 months ago

This is a false positive. The qsm cannot change when unlocked. The contents can change but access to its contents is properly protected by the lock.