Commit 8875d00
committed
Fix transposed copy size and buffer offset in wh_FlashUnit_ReadBytes
The unaligned read path swapped the copy length and buffer index:
this_size was set to offset_rem instead of (WHFU_BYTES_PER_UNIT -
offset_rem), and the memcpy source used the inverse. This corrupted
data on every unaligned read where offset_rem != WHFU_BYTES_PER_UNIT/2.
Added test cases for unaligned ReadBytes with offset_rem = 1, 2, 3,
and 5, including a multi-phase read spanning leading partial, aligned
middle, and trailing partial units.
Signed-off-by: Sameeh Jubran <sameeh@wolfssl.com>1 parent 40549bd commit 8875d00
2 files changed
+43
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
169 | 169 | | |
170 | 170 | | |
171 | 171 | | |
172 | | - | |
| 172 | + | |
173 | 173 | | |
174 | | - | |
| 174 | + | |
175 | 175 | | |
176 | 176 | | |
177 | 177 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
301 | 301 | | |
302 | 302 | | |
303 | 303 | | |
| 304 | + | |
| 305 | + | |
| 306 | + | |
| 307 | + | |
| 308 | + | |
| 309 | + | |
| 310 | + | |
| 311 | + | |
| 312 | + | |
| 313 | + | |
| 314 | + | |
| 315 | + | |
| 316 | + | |
| 317 | + | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
| 322 | + | |
| 323 | + | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
| 327 | + | |
| 328 | + | |
| 329 | + | |
| 330 | + | |
| 331 | + | |
| 332 | + | |
| 333 | + | |
| 334 | + | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | + | |
| 341 | + | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
304 | 345 | | |
305 | 346 | | |
306 | 347 | | |
| |||
0 commit comments