mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 07:07:24 -04:00
Pass the size of the top-level table to map when mapping the table instead
of the size of the pointer. Reported by: Coverity Coverity CID: 1147171
This commit is contained in:
parent
b1771e3dc6
commit
2efbc4a68d
1 changed files with 1 additions and 1 deletions
|
|
@ -402,7 +402,7 @@ MPFloatingPointer( u_int32_t paddr, int where, mpfps_t* mpfpsp )
|
|||
mpfps_t mpfps;
|
||||
|
||||
/* map in mpfps structure*/
|
||||
*mpfpsp = mpfps = mapEntry( paddr, sizeof( mpfps ) );
|
||||
*mpfpsp = mpfps = mapEntry( paddr, sizeof( *mpfps ) );
|
||||
|
||||
/* show its contents */
|
||||
printf( "MP Floating Pointer Structure:\n\n" );
|
||||
|
|
|
|||
Loading…
Reference in a new issue