Re: [PATCH v2 3/4] lib: uuid: fix uuid_str_to_bin() on 32-bit

2024-11-12 Thread Patrick DELAUNAY
On 11/3/24 23:42, Heinrich Schuchardt wrote: hextoul() cannot convert a string to a 64-bit number on a 32-bit system. Use function hextoull() instead. Reported-by: Patrick Delaunay Fixes: 22c48a92cdce ("lib: uuid: supporting building as part of host tools") Signed-off-by: Heinrich Schuchardt

Re: [PATCH v2 3/4] lib: uuid: fix uuid_str_to_bin() on 32-bit

2024-11-11 Thread Ilias Apalodimas
On Mon, 4 Nov 2024 at 00:42, Heinrich Schuchardt wrote: > > hextoul() cannot convert a string to a 64-bit number on a 32-bit system. > Use function hextoull() instead. > > Reported-by: Patrick Delaunay > Fixes: 22c48a92cdce ("lib: uuid: supporting building as part of host tools") > Signed-off-by:

Re: [PATCH v2 3/4] lib: uuid: fix uuid_str_to_bin() on 32-bit

2024-11-06 Thread Caleb Connolly
On 03/11/2024 23:42, Heinrich Schuchardt wrote: hextoul() cannot convert a string to a 64-bit number on a 32-bit system. Use function hextoull() instead. Reported-by: Patrick Delaunay Fixes: 22c48a92cdce ("lib: uuid: supporting building as part of host tools") Signed-off-by: Heinrich Schucha