[issue35028] Off by one error in cgi.FieldStorage(max_num_fields)

2019-08-27 Thread Benjamin Peterson
Change by Benjamin Peterson : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue35028] Off by one error in cgi.FieldStorage(max_num_fields)

2018-10-23 Thread miss-islington
miss-islington added the comment: New changeset 178bf58e798d3ef63f18b314056efbc3c33dd48b by Miss Islington (bot) in branch '3.7': bpo-35028: cgi: Fix max_num_fields off by one error (GH-9973) https://github.com/python/cpython/commit/178bf58e798d3ef63f18b314056efbc3c33dd48b -- _

[issue35028] Off by one error in cgi.FieldStorage(max_num_fields)

2018-10-23 Thread miss-islington
miss-islington added the comment: New changeset 58b614a327991f4baad4d2795a50027f75411450 by Miss Islington (bot) in branch '3.6': bpo-35028: cgi: Fix max_num_fields off by one error (GH-9973) https://github.com/python/cpython/commit/58b614a327991f4baad4d2795a50027f75411450 -- _

[issue35028] Off by one error in cgi.FieldStorage(max_num_fields)

2018-10-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +9391 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue35028] Off by one error in cgi.FieldStorage(max_num_fields)

2018-10-23 Thread miss-islington
miss-islington added the comment: New changeset b79b5c09493e98374e48fa122d82dab528fc6e72 by Miss Islington (bot) (matthewbelisle-wf) in branch 'master': bpo-35028: cgi: Fix max_num_fields off by one error (GH-9973) https://github.com/python/cpython/commit/b79b5c09493e98374e48fa122d82dab528fc6

[issue35028] Off by one error in cgi.FieldStorage(max_num_fields)

2018-10-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +9390 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue35028] Off by one error in cgi.FieldStorage(max_num_fields)

2018-10-19 Thread Matthew Belisle
New submission from Matthew Belisle : The cgi.FieldStorage class added in https://github.com/python/cpython/pull/9660 has an off by one error in the logic for recursively nested objects. The problem is that sub_max_num_fields should be initialized outside of the while loop, not inside of it.

[issue35028] Off by one error in cgi.FieldStorage(max_num_fields)

2018-10-19 Thread Matthew Belisle
Change by Matthew Belisle : -- keywords: +patch pull_requests: +9317 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-