Thomas Faber thfabba@gmx.de wrote:
Empty braces are no valid initializer. FIELD_OFFSET isn't constant "enough".
- /* add 'jmp ExitProcess' instruction */
- count = 2;
- bin.text_section[count++] = 0xFF;
- bin.text_section[count++] = 0x25;
- bin.text_section[count++] = EXIT_PROCESS&0xFF;
- bin.text_section[count++] = (EXIT_PROCESS>>8)&0xFF;
- bin.text_section[count++] = (EXIT_PROCESS>>16)&0xFF;
- bin.text_section[count++] = (EXIT_PROCESS>>24)&0xFF;
This part of the patch obviously is not related to the patch description.