summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-06-28Merge branch 'main' into user/jakobl/do_not_set_TargetVersionuser/jakobl/do_not_set_TargetVersionJakob Lichtenberg (170957)
2024-06-28Merge branch 'main' into user/jakobl/do_not_set_TargetVersionJakob Lichtenberg (170957)
2024-06-28Merge branch 'develop'Jakob Lichtenberg (170957)
2024-06-28Merge branch 'develop'Jakob Lichtenberg (170957)
2024-06-28Merge branch 'main' into developJakob Lichtenberg (170957)
2024-06-28Merge branch 'main' into developJakob Lichtenberg (170957)
2024-06-28Merge branch 'develop'Jakob Lichtenberg (170957)
2024-06-28RI develop to main (#1189)JakobL-MSFT
* Memory leakage in message "sizeof(SCANNER_MESSAGE) * threadCount * requestCount" bytes long memory is allocated but only "sizeof(SCANNER_MESSAGE) * threadCount" bytes long of it is freed. * Handles malloc function fail case * Refactors comment line * Solves the miscalculation of the message index * simbatt: Fix broken registry read-back The GetSimBattStateFromRegistry function is currently using default settings if GetSimBattStateFromRegistry succeeds, whereas settings from registry are only applied if GetSimBattStateFromRegistry fails. This does not make sense to me. Therefore proposing to remove the `!` negation from `if (!NT_SUCCESS(Status)) {` on the line after `Status = GetSimBattStateFromRegistry(Device, RegState);` so that default settings are loaded when registry read-back fails. * Issue of freeing memory without waiting completion of threads accessing it is fixed * Fixes information leakage warning Fixes the issue of possible information leakage from uninitialized padding bytes * Avoids possible multiplication overflow warning * Avoids possible multiplication overflow warning * CI Pipelines build with WDK Nuget Packages (#1179) Integrate nuget into the workflow pipelines * FI from main to develop (#1188) Fix text and minor issues in Winget configuration files Co-authored-by: Adonais Romero Gonzalez <[email protected]> * Improve version info, vsix installation, and update building locally readme * Fix printing vsix version * Refactored vsix install and cleaned up build sampleset --------- Co-authored-by: İsa Yurdagül <[email protected]> Co-authored-by: Fredrik Orderud <[email protected]> Co-authored-by: Christian Allred <[email protected]> Co-authored-by: tristanb-ntdev <[email protected]> Co-authored-by: Matt <[email protected]> Co-authored-by: Adonais Romero Gonzalez <[email protected]>
2024-06-27Improve version info, vsix installation, and update building locally ↵Adonais Romero González
documentation
2024-06-27Refactored vsix install and cleaned up build samplesetMatt
2024-06-25Fix printing vsix versionMatt
2024-06-25Improve version info, vsix installation, and update building locally readmeMatt
2024-06-24Merge branch 'main' into developJakob Lichtenberg (170957)
2024-06-24FI from main to develop (#1188)JakobL-MSFT
Fix text and minor issues in Winget configuration files Co-authored-by: Adonais Romero Gonzalez <[email protected]>
2024-06-24CI Pipelines build with WDK Nuget Packages (#1179)Matt
Integrate nuget into the workflow pipelines
2024-06-18Merge pull request #1064 from forderud/GetSimBattStateFromRegistry-fixtristanb-ntdev
simbatt: Fix broken registry read-back
2024-06-07Fix text and minor issues in Winget configuration filesAdonais Romero Gonzalez
2024-05-30Merge pull request #751 from isayrdgl/patch-2Christian Allred
Memory leakage in message
2024-05-29Avoids possible multiplication overflow warningİsa Yurdagül
2024-05-2750256705user/jakobl/50256705Jakob Lichtenberg (170957)
2024-05-25Avoids possible multiplication overflow warningİsa Yurdagül
2024-05-24Fixes information leakage warningİsa Yurdagül
Fixes the issue of possible information leakage from uninitialized padding bytes
2024-05-23Issue of freeing memory without waiting completion of threads accessing it ↵İsa Yurdagül
is fixed
2024-05-22Merge pull request #1172 from jacob-ronstadt/jacob-ronstadt/configJacob Ronstadt
update configuration_vsonly.dsc.yaml for 26100
2024-05-22remove winget install of sdk from configuration_vsonly.dsc.yamljacob-ronstadt
2024-05-22update configuration_vsonly.dsc.yaml for 26100jacob-ronstadt
2024-05-22Merge branch 'main' into developJakob Lichtenberg (170957)
2024-05-22develop to main (#1171)JakobL-MSFT
* Init commit * Upgrade NuGet to 26100.1 (#1162) * Upgrade NuGet to 10.0.26100.1-preview.ge-release * Upgrade NuGet to 10.0.26100.2 pre * Upgrade NuGet to 10.0.26100 * Upgrade NuGet to 10.0.26100.1 * Update Building-Locally.md * Update Building-Locally.md --------- Co-authored-by: Phan Trinh Ha <[email protected]>
2024-05-22Merge branch 'main' into developJakob Lichtenberg (170957)
2024-05-22Upgrade NuGet to 26100.1 (#1162)JakobL-MSFT
* Upgrade NuGet to 10.0.26100.1-preview.ge-release * Upgrade NuGet to 10.0.26100.2 pre * Upgrade NuGet to 10.0.26100 * Upgrade NuGet to 10.0.26100.1 * Update Building-Locally.md * Update Building-Locally.md
2024-05-22Merge pull request #1169 from jacob-ronstadt/jacob-ronstadt/configJacob Ronstadt
Update configuration.dsc.yml for 26100
2024-05-20update configuration.dsc.yaml to account for different architecturesjacob-ronstadt
2024-05-20Update to use winget for sdk instead of visual studio component. Update path ↵jacob-ronstadt
for vsix
2024-05-20update configuration.dsc.yml for 26100jacob-ronstadt
2024-05-16Init commitPhan Trinh Ha
2024-05-06Merge develop changes prior to upcoming WDK release (May 2024)Adonais Romero González
2024-05-06Merge branch 'main' into developAdonais Romero Gonzalez
2024-05-06[input/kbfiltr] Remove Boilerplate Text From Callout in Sample Keyboard ↵Jose Fernando Lopez Fernandez
Input Driver Doc (#1165) The current version of the `README.md` file for the keyboard filter driver sample erroneously includes what looks like boilerplate text in the callout at the bottom of the file. This text explains to the writer of the documentation what to include in the callout text, and should therefore have been removed when the actual content was added. This change simply removes this change from the callout text.
2024-05-06Update CodeQL Actions to v3Adonais Romero Gonzalez
2024-05-06Delete ununsed filesAdonais Romero Gonzalez
2024-05-03simbatt: Fix broken registry read-backFredrik Orderud
The GetSimBattStateFromRegistry function is currently using default settings if GetSimBattStateFromRegistry succeeds, whereas settings from registry are only applied if GetSimBattStateFromRegistry fails. This does not make sense to me. Therefore proposing to remove the `!` negation from `if (!NT_SUCCESS(Status)) {` on the line after `Status = GetSimBattStateFromRegistry(Device, RegState);` so that default settings are loaded when registry read-back fails.
2024-04-26Revert "Filter NDP from code owner list for now"Adonais Romero Gonzalez
This reverts commit 76e8fbba8bb0c5bfa9b7e1fcb407ba4f9b982419.
2024-04-26Filter NDP from code owner list for nowAdonais Romero Gonzalez
2024-04-26Add more code owners (NDP, Kernel Core)Adonais Romero Gonzalez
2024-04-25Add PnP as code ownersAdonais Romero Gonzalez
2024-04-24Update Building-Locally.mdJakobL-MSFT
2024-04-18NuGet notes (#1120)JakobL-MSFT
* NuGet notes * Update Building-Locally.md * Update Building-Locally.md: Update instructions for usb\usbview sample * Update Building-Locally.md * Update Building-Locally.md * Update Building-Locally.md * Update Building-Locally.md * Update Building-Locally.md * Update Building-Locally.md * Update Building-Locally.md * Update Building-Locally.md * Update Building-Locally.md * Update Building-Locally.md
2024-04-18Upgrade NuGet to 26095.2Jakob Lichtenberg (170957)
2024-04-18Upgrade NuGet 26095.2 (#1161)JakobL-MSFT
Upgrade NuGet to 26095.2
2024-04-12Upgrade nuget to 26090.10 (#1159)JakobL-MSFT
Upgrade NuGet to 26090.10