From 4921664f92bb6bd39ed7fd3dd24d58108973af25 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Sun, 1 Nov 2020 15:16:07 -0600 Subject: Stop encrypting hidden variables. They were persisted in plaintext, and always had to be decrypted and sent to a separate process to actually be used. --- src/engine/condition.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/engine/condition.cpp') diff --git a/src/engine/condition.cpp b/src/engine/condition.cpp index d6038b34..06591567 100644 --- a/src/engine/condition.cpp +++ b/src/engine/condition.cpp @@ -434,7 +434,6 @@ static HRESULT ParseOperand( HRESULT hr = S_OK; LPWSTR sczFormatted = NULL; - // Symbols don't encrypt their value, so can access the value directly. switch (pContext->NextSymbol.Type) { case BURN_SYMBOL_TYPE_IDENTIFIER: @@ -715,7 +714,6 @@ static HRESULT NextSymbol( pContext->wzRead[n] == L'-' || pContext->wzRead[n] == L'.'); - // Symbols don't encrypt their value, so can access the value directly. hr = VerParseVersion(&pContext->wzRead[1], n - 1, FALSE, &pContext->NextSymbol.Value.pValue); if (FAILED(hr)) { -- cgit v1.2.3-55-g6feb