<feed xmlns='http://www.w3.org/2005/Atom'>
<title>windows-driver-samples.git/network, branch user/jakobl/mtabow</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/windows-driver-samples.git/atom/network?h=user%2Fjakobl%2Fmtabow</id>
<link rel='self' href='http://cgit.235523.xyz/windows-driver-samples.git/atom/network?h=user%2Fjakobl%2Fmtabow'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/'/>
<updated>2026-05-21T19:50:22Z</updated>
<entry>
<title>Merge pull request #1386 from andremueiot/user/andremueiot/multiplication_converted_to_larger_type</title>
<updated>2026-05-21T19:50:22Z</updated>
<author>
<name>5an7y-Microsoft</name>
<email>jvalesmena@microsoft.com</email>
</author>
<published>2026-05-21T19:50:22Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=c7ad9e81acd5d28f339c7f007d6bc9d7ff24f7aa'/>
<id>urn:sha1:c7ad9e81acd5d28f339c7f007d6bc9d7ff24f7aa</id>
<content type='text'>
NDIS: Harden QoS bytes calculation in netvmini control path</content>
</entry>
<entry>
<title>ndis: Harden QoS bytes calculation in netvmini control path</title>
<updated>2026-05-20T17:53:41Z</updated>
<author>
<name>Andre Muezerie</name>
<email>andremue@linux.microsoft.com</email>
</author>
<published>2026-05-20T17:53:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=c4289d33165d82afc4779f3d148a49e57f96b454'/>
<id>urn:sha1:c4289d33165d82afc4779f3d148a49e57f96b454</id>
<content type='text'>
- Replaced direct size arithmetic in NICSetQOSParameters with checked integer-safe operations.
- Added overflow handling for classification table size computation:
- Multiply NumClassificationElements × ClassificationElementSize via RtlULongMult.
- Add the revision header size via RtlULongAdd.
- Return NDIS_STATUS_INVALID_LENGTH when either checked operation fails, instead of relying on unchecked arithmetic.
</content>
</entry>
<entry>
<title>netvmini/rssv2: fix mixed-width comparison in processor lookup loop</title>
<updated>2026-05-14T20:53:59Z</updated>
<author>
<name>Andre Muezerie</name>
<email>andremue@linux.microsoft.com</email>
</author>
<published>2026-05-14T20:53:59Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=566fe957730ddd523930ae1a82ec7bdee48e87af'/>
<id>urn:sha1:566fe957730ddd523930ae1a82ec7bdee48e87af</id>
<content type='text'>
Summary
This PR addresses a static-analysis warning in rssv2.c related to comparing values of different integer widths in a loop condition.

Changes
- Updated the loop index type in NICSetRSSv2FindProcessorInRssSet from UINT8 to ULONG to match RssProcessorCount width.
- Added an explicit cast when returning the found index: return (UINT8)index; to preserve the function’s return type and behavior.

Why
Using matching integer widths in loop comparisons avoids analyzer warnings and reduces risk of subtle boundary issues.

Impact
No functional behavior change is intended; this is a type-safety and code-quality fix for warning cleanup.
</content>
</entry>
<entry>
<title>Merge pull request #1373 from andremueiot/user/andremueiot/uninitialized_var_bindview</title>
<updated>2026-05-07T23:14:53Z</updated>
<author>
<name>5an7y-Microsoft</name>
<email>jvalesmena@microsoft.com</email>
</author>
<published>2026-05-07T23:14:53Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=be3310aca6254c44200bce767ec7877b363d52f1'/>
<id>urn:sha1:be3310aca6254c44200bce767ec7877b363d52f1</id>
<content type='text'>
Potentially uninitialized variables in bindview</content>
</entry>
<entry>
<title>Potentially uninitialized variable in ndisbind.c</title>
<updated>2026-04-27T18:46:12Z</updated>
<author>
<name>Andre Muezerie</name>
<email>andremue@linux.microsoft.com</email>
</author>
<published>2026-04-27T18:46:12Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=d52da24eff0bc1f80c99d843e6e2846e21b73dac'/>
<id>urn:sha1:d52da24eff0bc1f80c99d843e6e2846e21b73dac</id>
<content type='text'>
These changes eliminate the warnings about uninitialized variables under network\ndis.
A macro was also added to prottest.c to suppress a (false) buffer overrun.
</content>
</entry>
<entry>
<title>Potentially uninitialized variable in bindview</title>
<updated>2026-04-23T21:19:29Z</updated>
<author>
<name>Andre Muezerie</name>
<email>andremue@linux.microsoft.com</email>
</author>
<published>2026-04-23T21:19:29Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=58260dd4216d5e558fe6f218d1aa0935d59a18c5'/>
<id>urn:sha1:58260dd4216d5e558fe6f218d1aa0935d59a18c5</id>
<content type='text'>
These changes eliminate the warnings below in bindview.cpp by initializinf the variables mentioned.

1449 The status of this call to externally defined (SAL) GetCursorPos is not checked, potentially leaving pt uninitialized.
1528 The status of this call to externally defined (SAL) GetCursorPos is not checked, potentially leaving pt uninitialized.
1825 The status of this call to externally defined (SAL) GetDeviceStatus is not checked, potentially leaving ulStatus uninitialized.
</content>
</entry>
<entry>
<title>removed the space after newline which seems to be bug in c++ 23 not in samples</title>
<updated>2026-02-04T06:18:25Z</updated>
<author>
<name>Prashant Chahar</name>
<email>pchahar@microsoft.com</email>
</author>
<published>2026-02-04T06:18:25Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=caee83cf5eddfb7d5e10125230a95ef4c87b2e38'/>
<id>urn:sha1:caee83cf5eddfb7d5e10125230a95ef4c87b2e38</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixes Linker Error for the WFP Samples (#1281)</title>
<updated>2025-04-01T23:36:24Z</updated>
<author>
<name>Elaine Houha</name>
<email>38798233+houha2@users.noreply.github.com</email>
</author>
<published>2025-04-01T23:36:24Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=ee60abcd73e358f0a3f25cb5101f981e04a99168'/>
<id>urn:sha1:ee60abcd73e358f0a3f25cb5101f981e04a99168</id>
<content type='text'>
removes inline

Co-authored-by: Elaine Houha &lt;elhouha@microsoft.com&gt;</content>
</entry>
<entry>
<title>Update samples to use WDF v15+</title>
<updated>2025-03-20T20:25:54Z</updated>
<author>
<name>Wei Mao</name>
<email>weimao1@gmail.com</email>
</author>
<published>2025-03-20T20:25:54Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=b20980a63d4d35794c5266fef6b96f9199ab83d0'/>
<id>urn:sha1:b20980a63d4d35794c5266fef6b96f9199ab83d0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge pull request #1196 from taj0207/main</title>
<updated>2024-07-08T17:52:12Z</updated>
<author>
<name>taj0207</name>
<email>taj0207@gmail.com</email>
</author>
<published>2024-07-08T17:52:12Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=6dbda1fc0a4f56d567a9f6af67dc646f96695ead'/>
<id>urn:sha1:6dbda1fc0a4f56d567a9f6af67dc646f96695ead</id>
<content type='text'>
update with codel fix</content>
</entry>
</feed>
