Sfoglia il codice sorgente

Removed incorrect ExpandEnvironmentStrings() error.

A log_event() call was inadvertently left in the code causing an error
to be set to the eventlog saying that ExpandEnvironmentStrings() had
failed when it had actually succeeded.
Iain Patterson 13 anni fa
parent
commit
f9a99d7e21
1 ha cambiato i file con 0 aggiunte e 1 eliminazioni
  1. 0 1
      registry.cpp

+ 0 - 1
registry.cpp

@@ -132,7 +132,6 @@ int expand_parameter(HKEY key, char *value, char *data, unsigned long datalen) {
     HeapFree(GetProcessHeap(), 0, buffer);
     return 3;
   }
-  log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_EXPANDENVIRONMENTSTRINGS_FAILED, buffer, data, GetLastError(), 0);
 
   HeapFree(GetProcessHeap(), 0, buffer);
   return 0;