nifm, ssl: Fix incorrect response sizes

This commit is contained in:
Morph 2021-05-13 09:00:46 -04:00
parent 6c78c2ae38
commit faaea00069
2 changed files with 2 additions and 2 deletions

View file

@ -368,7 +368,7 @@ private:
},
};
IPC::ResponseBuilder rb{ctx, 2 + sizeof(IpConfigInfo) / sizeof(u32)};
IPC::ResponseBuilder rb{ctx, 2 + (sizeof(IpConfigInfo) + 3) / sizeof(u32)};
rb.Push(RESULT_SUCCESS);
rb.PushRaw<IpConfigInfo>(ip_config_info);
}