Skip to content

Commit

Permalink
[driver] Fix ExFreePool(&pointer) => ExFreePool(pointer)
Browse files Browse the repository at this point in the history
Fixed-by: Shao Miller <Shao.Miller@yrdsb.edu.on.ca>
  • Loading branch information
Michael Brown committed Feb 22, 2010
1 parent e7685b5 commit 754a91c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/driver/registry.c
Expand Up @@ -107,7 +107,7 @@ NTSTATUS fetch_reg_kvi ( HANDLE reg_key, LPCWSTR value_name,
return STATUS_SUCCESS;

err_zwqueryvaluekey:
ExFreePool ( kvi );
ExFreePool ( *kvi );
err_exallocatepoolwithtag_kvi:
err_zwqueryvaluekey_len:
return status;
Expand Down

0 comments on commit 754a91c

Please sign in to comment.