Opened 6 years ago
Closed 5 years ago
#2049 closed defect (wontfix)
non-aligned writes in httpserver
Reported by: | Dimitar Misev | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 10.0 |
Component: | httpserver | Version: | 9.7 |
Keywords: | Cc: | Peter Baumann | |
Complexity: | Medium |
Description
In HttpServer there are non-aligned writes in the response, mainly in the form of
- write some string
- right where the string ends, write an int or long value with no regards that the address is aligned for these types
This passes on x86, and it should work on more recent ARM since v6 which was released back in ~2002 (details), but not generally on all CPUs.
Note:
See TracTickets
for help on using tickets.
I think it's not worth it trying to fix this until we come across a case where it's a real problem (which is very unlikely).