Skip to content

Commit

Permalink
Per #2673, try again ci-skip-unit
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Oct 17, 2024
1 parent 2fe55ca commit 52a6129
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/libcode/vx_python3_utils/wchar_argv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,7 @@ for (int j=0; j<_argc; ++j) {
// we're using the len array here because
// we don't want to call m_strlen more than
// once on each argv value
if (_argv) {
string arg_str = _argv[j];
len[j] = arg_str.length();
}
if (_argv && _argv[j]) len[j] = m_strlen(_argv[j]);

argv_len += len[j];

Expand Down

0 comments on commit 52a6129

Please sign in to comment.