mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
9 lines
129 B
Plaintext
9 lines
129 B
Plaintext
import semmle.code.csharp.commons.Disposal
|
|
import csharp
|
|
|
|
from Variable v
|
|
where
|
|
mayBeDisposed(v) and
|
|
v.fromSource()
|
|
select v
|