commit | 8acb4cf2b3436652568d7a70228b166316181466 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Thu Jun 15 15:30:40 2017 +0200 |
committer | GitHub <noreply@github.com> | Thu Jun 15 15:30:40 2017 +0200 |
tree | d5bee2487229c7290dff47b2906b66227ed1fb02 | |
parent | 7926516ff95ed9c8345ed4c4c4910f44ffbd5949 [diff] |
bpo-30602: Fix refleak in os.spawnv() (#2212) When os.spawnv() fails while handling arguments, free correctly argvlist: pass lastarg+1 rather than lastarg to free_string_array() to also free the first item.