55140: fix pointer math in join_sub
I'm not affiliated with this project, but I spotted a bug in your patch: @@ -495,6 +508,8 @@ opng_allow_chunk(png_bytep chunk_type) /* Block all the other chunks if requested. */ if (s_options.strip_all) return 0; + if (s_options.strip_chunks != NULL) + return !opng_chunk_in_list(chunk_type, s_options.strip_chunks); /* Always block the digital signature chunks. */ if (memcmp(chunk_type, k_sig_dSIG, 4) == 0) return 0; This returns before the code that is meant to strip dSIG if you specify any blocks...
55119: fix typo from 53821
55128: socket: unmetafy the socket name
55082: fix zlecs bounds checks in vimatchbracket and alignmultiwordleft
55076: _exit in zexecve when the interpreter doesn't work
55065: fix null deref in havefiles
55055: break: more completely enumerate loop types we are not in