I have a program like this
#include <stdio.h>
int somma(x,y){
return x+y;
}
int diff(x,y){
return x-y;
}
int main(){
int x=5;
int y=4;
printf("la somma e' %d", somma(x,y));
printf("La differenza e' %d", diff(x,y));
}
I'm trying to patching it to replace the call of somma function with the diff function. In E8 79 FF FF FF and the diff function has op E8 70 FF FF FF so what I tried to do is: replace the op of somma function with diff ones. So my somma op becames E8 70 FF FF FF but when I try to execute it I receive a segmentation fault. Why? Wha's my error?
EDIT
These is a screen of my work.
