source:
CIVL/examples/robustness/string_memory_storage.cvl@
53e15b1
| Last change on this file since 53e15b1 was 76d3d3a, checked in by , 5 years ago | |
|---|---|
|
|
| File size: 290 bytes | |
| Line | |
|---|---|
| 1 | /* |
| 2 | * "SOME_STRING" has dy-scope Id -1 and Variable Id 0 |
| 3 | * It should not be considered in heap memory because its dy-scope Id is less than 0. |
| 4 | */ |
| 5 | |
| 6 | static char * x2s() { |
| 7 | return "SOME_STRING"; |
| 8 | } |
| 9 | |
| 10 | int main() { |
| 11 | int *p = (int*)$malloc($here, sizeof(int)); |
| 12 | char *q = x2s(); |
| 13 | $free(p); |
| 14 | } |
Note:
See TracBrowser
for help on using the repository browser.
