<feed xmlns='http://www.w3.org/2005/Atom'>
<title>windows-driver-samples.git, branch user/jakobl/nuget_packagereference_instead_of_packages_config</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/windows-driver-samples.git/atom/?h=user%2Fjakobl%2Fnuget_packagereference_instead_of_packages_config</id>
<link rel='self' href='http://cgit.235523.xyz/windows-driver-samples.git/atom/?h=user%2Fjakobl%2Fnuget_packagereference_instead_of_packages_config'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/'/>
<updated>2024-06-28T18:39:18Z</updated>
<entry>
<title>Merge branch 'main' into user/jakobl/nuget_packagereference_instead_of_packages_config</title>
<updated>2024-06-28T18:39:18Z</updated>
<author>
<name>Jakob Lichtenberg (170957)</name>
<email>jakobl@microsoft.com</email>
</author>
<published>2024-06-28T18:39:18Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=1971c7bfc27f90764155ef96df64db4b4cfb93df'/>
<id>urn:sha1:1971c7bfc27f90764155ef96df64db4b4cfb93df</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'develop'</title>
<updated>2024-06-28T17:06:48Z</updated>
<author>
<name>Jakob Lichtenberg (170957)</name>
<email>jakobl@microsoft.com</email>
</author>
<published>2024-06-28T17:06:48Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=b3af8c8f9bd508f54075da2f2516b31d05cd52c8'/>
<id>urn:sha1:b3af8c8f9bd508f54075da2f2516b31d05cd52c8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'develop'</title>
<updated>2024-06-28T17:05:27Z</updated>
<author>
<name>Jakob Lichtenberg (170957)</name>
<email>jakobl@microsoft.com</email>
</author>
<published>2024-06-28T17:05:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=38b55713207ab9c79fb6f0ccbe93e7c42c21ad11'/>
<id>urn:sha1:38b55713207ab9c79fb6f0ccbe93e7c42c21ad11</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'main' into develop</title>
<updated>2024-06-28T17:05:03Z</updated>
<author>
<name>Jakob Lichtenberg (170957)</name>
<email>jakobl@microsoft.com</email>
</author>
<published>2024-06-28T17:05:03Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=374b7536f01e96229d3f7ff22797a4b402a9d2c9'/>
<id>urn:sha1:374b7536f01e96229d3f7ff22797a4b402a9d2c9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'main' into develop</title>
<updated>2024-06-28T17:03:20Z</updated>
<author>
<name>Jakob Lichtenberg (170957)</name>
<email>jakobl@microsoft.com</email>
</author>
<published>2024-06-28T17:03:20Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=4d2bc60a0d06e72d3ad1acddb3c8af74f7ba29f4'/>
<id>urn:sha1:4d2bc60a0d06e72d3ad1acddb3c8af74f7ba29f4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'develop'</title>
<updated>2024-06-28T17:01:56Z</updated>
<author>
<name>Jakob Lichtenberg (170957)</name>
<email>jakobl@microsoft.com</email>
</author>
<published>2024-06-28T17:01:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=4a85c20907da6a0ca99ad1cf0dd6ec730ca630e0'/>
<id>urn:sha1:4a85c20907da6a0ca99ad1cf0dd6ec730ca630e0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>RI develop to main (#1189)</title>
<updated>2024-06-28T16:56:29Z</updated>
<author>
<name>JakobL-MSFT</name>
<email>110699333+JakobL-MSFT@users.noreply.github.com</email>
</author>
<published>2024-06-28T16:56:29Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=263b19b4347fcda2e236c14a9daf41e7d518625d'/>
<id>urn:sha1:263b19b4347fcda2e236c14a9daf41e7d518625d</id>
<content type='text'>
* 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 &lt;adonais.neoadonis@gmail.com&gt;

* 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 &lt;38290414+isayrdgl@users.noreply.github.com&gt;
Co-authored-by: Fredrik Orderud &lt;fredrik.orderud@ge.com&gt;
Co-authored-by: Christian Allred &lt;13487734+cgallred@users.noreply.github.com&gt;
Co-authored-by: tristanb-ntdev &lt;60945150+tristanb-ntdev@users.noreply.github.com&gt;
Co-authored-by: Matt &lt;138825652+middlemose@users.noreply.github.com&gt;
Co-authored-by: Adonais Romero Gonzalez &lt;adonais.neoadonis@gmail.com&gt;</content>
</entry>
<entry>
<title>Improve version info, vsix installation, and update building locally documentation</title>
<updated>2024-06-27T23:15:58Z</updated>
<author>
<name>Adonais Romero González</name>
<email>adonais.neoadonis@gmail.com</email>
</author>
<published>2024-06-27T23:15:58Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=77a45280ca061d8691b2b1534bfe0198b88cb4e1'/>
<id>urn:sha1:77a45280ca061d8691b2b1534bfe0198b88cb4e1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refactored vsix install and cleaned up build sampleset</title>
<updated>2024-06-27T21:17:05Z</updated>
<author>
<name>Matt</name>
<email>138825652+middlemose@users.noreply.github.com</email>
</author>
<published>2024-06-27T21:17:05Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=f9eb04d34edd823873e491a7da6e6ed7a064e823'/>
<id>urn:sha1:f9eb04d34edd823873e491a7da6e6ed7a064e823</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix printing vsix version</title>
<updated>2024-06-25T19:50:00Z</updated>
<author>
<name>Matt</name>
<email>138825652+middlemose@users.noreply.github.com</email>
</author>
<published>2024-06-25T19:50:00Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=2e07f1b58a93eb36c616192045db654cf043a670'/>
<id>urn:sha1:2e07f1b58a93eb36c616192045db654cf043a670</id>
<content type='text'>
</content>
</entry>
</feed>
