VirtualBox

Changeset 69743 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Nov 18, 2017 5:09:04 AM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
119143
Message:

svcnmain.cpp: log name nits

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/win/svcmain.cpp

    r69734 r69743  
    797797        /** @todo Merge this code with server.cpp (use Logging.cpp?). */
    798798        char szLogFile[RTPATH_MAX];
    799         if (!pszLogFile)
     799        if (!pszLogFile || !*pszLogFile)
    800800        {
    801801            vrc = com::GetVBoxUserHomeDirectory(szLogFile, sizeof(szLogFile));
    802802            if (RT_SUCCESS(vrc))
    803803                vrc = RTPathAppend(szLogFile, sizeof(szLogFile), "VBoxSVC.log");
    804         }
    805         else
    806         {
    807             if (!RTStrPrintf(szLogFile, sizeof(szLogFile), "%s", pszLogFile))
    808                 vrc = VERR_NO_MEMORY;
    809         }
    810         if (RT_FAILURE(vrc))
    811             return RTMsgErrorExit(RTEXITCODE_FAILURE, "failed to create logging file name, rc=%Rrc", vrc);
     804            if (RT_FAILURE(vrc))
     805                return RTMsgErrorExit(RTEXITCODE_FAILURE, "failed to construct release log filename, rc=%Rrc", vrc);
     806            pszLogFile = szLogFile;
     807        }
    812808
    813809        char szError[RTPATH_MAX + 128];
    814         vrc = com::VBoxLogRelCreate("COM Server", szLogFile,
     810        vrc = com::VBoxLogRelCreate("COM Server", pszLogFile,
    815811                                    RTLOGFLAGS_PREFIX_THREAD | RTLOGFLAGS_PREFIX_TIME_PROG,
    816812                                    VBOXSVC_LOG_DEFAULT, "VBOXSVC_RELEASE_LOG",
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette