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
| [ | |
| { | |
| "arguments": [ | |
| "g++", | |
| "-c", | |
| "-std=c++11", | |
| "-g3", | |
| "-pipe", | |
| "-fpie", | |
| "-pthread", |
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
| from dumper import * | |
| import gdb | |
| def qdump__String(d, value): | |
| if value["_cowdata"]["_ptr"].integer() == 0: | |
| d.putValue("") | |
| return | |
| d.putItem(value["_cowdata"]["_ptr"]) |