| 113 | } |
| 114 | |
| 115 | void appendLe32(std::string& out, uint32_t v) |
| 116 | { |
| 117 | out.push_back((char)(v & 0xFF)); |
| 118 | out.push_back((char)((v >> 8) & 0xFF)); |
| 119 | out.push_back((char)((v >> 16) & 0xFF)); |
| 120 | out.push_back((char)((v >> 24) & 0xFF)); |
| 121 | } |
| 122 | |
| 123 | bool isSafeZipRelativePath(const std::string& relPath) |
| 124 | { |
no test coverage detected