This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| BEGIN; | |
| CREATE SEQUENCE path_seq; | |
| CREATE TABLE path ( | |
| id INTEGER PRIMARY KEY DEFAULT NEXTVAL('path_seq'), | |
| it INTEGER, | |
| x0 TEXT NOT NULL, | |
| x1 TEXT NOT NULL | |
| ); | |
| CREATE INDEX path_delta_idx ON path (it); | |
| CREATE INDEX path0_idx ON path (x0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extern crate alloc as b; | |
| mod foo { | |
| mod bar { | |
| pub(in b::string::String::newy) extern crate alloc as e; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Standalone version of zlib CVE-2022-37434, see "BUG" below. | |
| // | |
| // musl-gcc -nostdlib -fno-stack-protector -static -O0 zlib-cve-2022-37434.c | |
| // | |
| // Original zlib license text follows: | |
| // | |
| // Copyright notice: | |
| // | |
| // (C) 1995-2026 Jean-loup Gailly and Mark Adler | |
| // |
OlderNewer