mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
8 lines
115 B
Plaintext
8 lines
115 B
Plaintext
import semmle.code.csharp.commons.Disposal
|
|
|
|
from Variable v
|
|
where
|
|
mayBeDisposed(v) and
|
|
v.fromSource()
|
|
select v
|