We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77be460 commit eb6e96fCopy full SHA for eb6e96f
third_party/zip/README.cosmo
@@ -11,4 +11,5 @@ ORIGIN
11
LOCAL CHANGES
12
13
- Use Cosmopolitan's PCLMUL optimized CRC32
14
+ - Don't magically append .zip extension to filename argument
15
- Improve find_next_signature() performance using unlocked stdio
third_party/zip/zipfile.c
@@ -413,6 +413,10 @@ char *ziptyp(s)
413
if ((t = malloc(strlen(s) + 5)) == NULL)
414
return NULL;
415
strcpy(t, s);
416
+
417
+ // [jart] don't magically append .zip extension to filename argument
418
+ if (1) return t;
419
420
# ifdef __human68k__
421
_toslash(t);
422
# endif
0 commit comments