Skip to content

Commit

Permalink
ViewlogEditor の未設定チェックを修正した TeraTermProject#232
Browse files Browse the repository at this point in the history
  • Loading branch information
zmatsuo committed Jun 27, 2024
1 parent 9aadb25 commit a49041c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teraterm/common/ttlib_static_cpp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2067,7 +2067,7 @@ char *GetVersionSubstr(void)
DWORD TTCreateProcess(const wchar_t *cmd, const wchar_t *arg1, const wchar_t *arg2)
{
DWORD e = NO_ERROR;
if (cmd != NULL) {
if (cmd != NULL && cmd[0] != 0) {
wchar_t *command;
if (cmd[0] == L'\"' || wcschr(cmd, L' ') == NULL) {
command = _wcsdup(cmd);
Expand Down

0 comments on commit a49041c

Please sign in to comment.