@@ -3,12 +3,17 @@ extensions:
3
3
pack : codeql/rust-all
4
4
extensible : sourceModel
5
5
data :
6
- - ["libc::free", "Argument[0]", "pointer-invalidate", "manual"]
6
+ - ["libc::unix::free", "Argument[0]", "pointer-invalidate", "manual"]
7
+ - ["libc::windows::free", "Argument[0]", "pointer-invalidate", "manual"]
7
8
- addsTo :
8
9
pack : codeql/rust-all
9
10
extensible : sinkModel
10
11
data :
11
- - ["libc::malloc", "Argument[0]", "alloc-size", "manual"]
12
- - ["libc::aligned_alloc", "Argument[1]", "alloc-size", "manual"]
13
- - ["libc::calloc", "Argument[0,1]", "alloc-size", "manual"]
14
- - ["libc::realloc", "Argument[1]", "alloc-size", "manual"]
12
+ - ["libc::unix::malloc", "Argument[0]", "alloc-size", "manual"]
13
+ - ["libc::windows::malloc", "Argument[0]", "alloc-size", "manual"]
14
+ - ["libc::unix::aligned_alloc", "Argument[1]", "alloc-size", "manual"]
15
+ - ["libc::windows::aligned_alloc", "Argument[1]", "alloc-size", "manual"]
16
+ - ["libc::unix::calloc", "Argument[0,1]", "alloc-size", "manual"]
17
+ - ["libc::windows::calloc", "Argument[0,1]", "alloc-size", "manual"]
18
+ - ["libc::unix::realloc", "Argument[1]", "alloc-size", "manual"]
19
+ - ["libc::windows::realloc", "Argument[1]", "alloc-size", "manual"]
0 commit comments