why the operator new return 0x1ff8 when it been asked to allocate 0xA8 bytes?
0:016> u IEFRAME!CIntShcut_CreateInstance+0x3
IEFRAME!CIntShcut_CreateInstance+0x3:
00d6762c 8bec mov ebp,esp
00d6762e 56 push esi
00d6762f 68a8000000 **push 0A8h** //asking for 0xA8
00d67634 be0e000780 mov esi,8007000Eh
00d67639 e845a0edff call IEFRAME!operator new (00c41683)
00d6763e 85c0 test eax,eax
00d67640 59 pop ecx
00d67641 7419 je IEFRAME!CIntShcut_CreateInstance+0x23 (00d6765c)
IEFRAME!CIntShcut_CreateInstance+0x15:
00d6763e 85c0 test eax,eax
0:008> !heap -p -a eax
address 00247190 found in
_HEAP @ 150000
HEAP_ENTRY Size Prev Flags UserPtr UserSize - state
00246eb0 0400 0000 [01] 00246eb8 **01ff8** - (busy) why 0x1FF8 ??
EFRAME!operator new:
00c41683 8bff mov edi,edi
00c41685 55 push ebp
00c41686 8bec mov ebp,esp
00c41688 ff7508 push dword ptr [ebp+8]
00c4168b 6a08 push 8
00c4168d ff153c11c300 call dword ptr [IEFRAME!imp_GetProcessHeap (00c3113c)]
00c41693 50 push tax
00c41694 ff153811c300 call dword ptr [IEFRAME!imp_HeapAlloc (00c31138)]