Changeset 50171 in vbox
- Timestamp:
- Jan 23, 2014 4:50:00 AM (11 years ago)
- Location:
- trunk/src/VBox/Devices/Network/lwip-new
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/lwip-new/CHANGELOG
r50170 r50171 80 80 81 81 ++ Bugfixes: 82 83 2014-01-10: Simon Goldschmidt 84 * memp.c: fixed bug #41188 Alignment error in memp_init() when MEMP_SEPARATE_POOLS==1 82 85 83 86 2014-01-10: Simon Goldschmidt -
trunk/src/VBox/Devices/Network/lwip-new/src/core/memp.c
r47886 r50171 416 416 #endif 417 417 #if MEMP_SEPARATE_POOLS 418 memp = (struct memp*) memp_bases[i];418 memp = (struct memp*)LWIP_MEM_ALIGN(memp_bases[i]); 419 419 #endif /* MEMP_SEPARATE_POOLS */ 420 420 /* create a linked list of memp elements */
Note:
See TracChangeset
for help on using the changeset viewer.