You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
\"case LZMA_DATA_ERROR:\\n\\t\\t/* Enhanced debug information for LZMA_DATA_ERROR */\\n\\t\\tfprintf(stderr, \\\"LZMA DEBUG: Corrupted input data detected\\\\n\\\");\\n\\t\\tfprintf(stderr, \\\"LZMA DEBUG: - Available input bytes: %zu\\\\n\\\", self->stream.avail_in);\\n\\t\\tarchive_set_error(&self->archive->archive,\\n\\t\\t ARCHIVE_ERRNO_MISC,\\n\\t\\t \\\"Lzma library error: Corrupted input data (see debug output)\\\");\\n\\t\\tbreak;\"
249
+
CONTENT \"\${CONTENT}\")
250
+
251
+
# Add LZMA debug messages for LZMA_FORMAT_ERROR
252
+
string(REPLACE
253
+
\"case LZMA_FORMAT_ERROR:\\n\\t\\tarchive_set_error(&self->archive->archive,\\n\\t\\t ARCHIVE_ERRNO_MISC,\\n\\t\\t \\\"Lzma library error: format not recognized\\\");\\n\\t\\tbreak;\"
254
+
\"case LZMA_FORMAT_ERROR:\\n\\t\\t/* Enhanced debug information for LZMA_FORMAT_ERROR */\\n\\t\\tfprintf(stderr, \\\"LZMA DEBUG: Format not recognized\\\\n\\\");\\n\\t\\tfprintf(stderr, \\\"LZMA DEBUG: - Available input bytes: %zu\\\\n\\\", self->stream.avail_in);\\n\\t\\tfprintf(stderr, \\\"LZMA DEBUG: - First 8 bytes: \\\");\\n\\t\\tfor (int i = 0; i < 8 && i < self->stream.avail_in; i++) {\\n\\t\\t\\tfprintf(stderr, \\\"%02x \\\", self->stream.next_in[i]);\\n\\t\\t}\\n\\t\\tfprintf(stderr, \\\"\\\\n\\\");\\n\\t\\tarchive_set_error(&self->archive->archive,\\n\\t\\t ARCHIVE_ERRNO_MISC,\\n\\t\\t \\\"Lzma library error: format not recognized (see debug output)\\\");\\n\\t\\tbreak;\"
0 commit comments