Message258430
libmpdec/memory.c keeps pointers to customisable memory functions (malloc/free) and initialises them to &malloc and &free. These functions are dllimport'd from the CRT, and so they trigger a warning letting you know that "&malloc == &malloc" may not always be true.
(That trivial comparison should always be true, but if you indirect one of the values through a few other modules it may be an address of a different stub function that calls the real malloc, and hence the addresses may not match.) |
|
Date |
User |
Action |
Args |
2016-01-16 22:06:15 | steve.dower | set | recipients:
+ steve.dower, loewis, paul.moore, tim.golden, skrah, zach.ware, serhiy.storchaka, Alexander Riccio |
2016-01-16 22:06:15 | steve.dower | set | messageid: <1452981975.33.0.331696566706.issue25878@psf.upfronthosting.co.za> |
2016-01-16 22:06:15 | steve.dower | link | issue25878 messages |
2016-01-16 22:06:15 | steve.dower | create | |
|