Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
Merge pull request #22 from jonas2k/dev
Browse files Browse the repository at this point in the history
Fixed misspelled variable name
  • Loading branch information
jonas2k authored Nov 13, 2020
2 parents df38a53 + 7ea3fd5 commit 7afda75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CylanceApiTools.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '1.42'
ModuleVersion = '1.43'

# Supported PSEditions
CompatiblePSEditions = @("Core")
Expand Down
2 changes: 1 addition & 1 deletion modules/Helpers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ function Add-MemProtectionActionDescription {

$memProtectionActions = $MyInvocation.MyCommand.Module.PrivateData["memProtectionActions"]
if ($memProtectionActions.ContainsKey($([int32]$memProtectionEvent.action))) {
$memProtectionEvent | Add-Member -NotePropertyName "action_description" -NotePropertyValue $($memProtectionActions.$([int32]$evmemProtectionEventent.action))
$memProtectionEvent | Add-Member -NotePropertyName "action_description" -NotePropertyValue $($memProtectionActions.$([int32]$memProtectionEvent.action))
}
}
function Add-MemProtectionViolationTypeDescription {
Expand Down

0 comments on commit 7afda75

Please sign in to comment.