[issue39621] md5_compress() in Modules/md5module.c can take a const buf

2020-02-12 Thread miss-islington
miss-islington added the comment: New changeset 669981b3b14dd16dec42089d6ac8d6449fde8abd by Miss Islington (bot) in branch '3.8': closes bpo-39621: Make buf arg to md5_compress be const. (GH-18497) https://github.com/python/cpython/commit/669981b3b14dd16dec42089d6ac8d6449fde8abd --

[issue39621] md5_compress() in Modules/md5module.c can take a const buf

2020-02-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +17872 pull_request: https://github.com/python/cpython/pull/18498 ___ Python tracker ___ __

[issue39621] md5_compress() in Modules/md5module.c can take a const buf

2020-02-12 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 597ebed748d0b0c061f8c108bd98270d103286c1 by Andy Lester in branch 'master': closes bpo-39621: Make buf arg to md5_compress be const. (GH-18497) https://github.com/python/cpython/commit/597ebed748d0b0c061f8c108bd98270d103286c1 -- nos

[issue39621] md5_compress() in Modules/md5module.c can take a const buf

2020-02-12 Thread Andy Lester
Change by Andy Lester : -- keywords: +patch pull_requests: +17871 stage: -> patch review pull_request: https://github.com/python/cpython/pull/18497 ___ Python tracker ___

[issue39621] md5_compress() in Modules/md5module.c can take a const buf

2020-02-12 Thread Andy Lester
New submission from Andy Lester : The function md5_compress does not modify its buffer argument. static void md5_compress(struct md5_state *md5, unsigned char *buf) buf should be const. -- components: Extension Modules messages: 361932 nosy: petdance priority: normal severity: normal