Home
Feedback Tracker
Search
Configure Global Search
Log In
Transactions
T125135
Change Details
Change Details
Old
New
Diff
AutoArray size and capacity are signed 32bit Integers. That's already bad because size and capacity should really be unsigned. Even worse on x64. There they are also 32bit Integers but with 32 additional bit of padding because of alignment. So you have 32Bit signed Integers where there should be a 64Bit unsigned Integer.
AutoArray size and capacity are signed 32bit Integers. That's already bad because size and capacity should really be unsigned. Even worse on x64. There they are also 32bit Integers but with 32 additional bit of padding because of alignment. So you have 32Bit signed Integers where there should be a 64Bit unsigned Integer. I think the same might actually also apply to RString.
AutoArray size and capacity are signed 32bit Integers. That's already bad because size and capacity should really be unsigned. Even worse on x64. There they are also 32bit Integers but with 32 additional bit of padding because of alignment. So you have 32Bit signed Integers where there should be a 64Bit unsigned Integer.
I think the same might actually also apply to RString.
Continue