kuba-- / zip

A portable, simple zip library written in C
MIT License
1.42k stars 276 forks source link

Fix incorrect order of argument to calloc #345

Closed AHSauge closed 6 months ago

AHSauge commented 6 months ago

Compiling the code with GCC14 this particular line triggers calloc-transposed-args since the size is provided as the first argument. The order of arguments for calloc is number and then size.

kuba-- commented 6 months ago

Thanks