summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorshennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-12-14 21:59:56 +0000
committershennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-12-14 21:59:56 +0000
commit63601a1a0618861f8b987797a04e7e7c8e20bc7a (patch)
tree45c3a13cfecc86735a6b2ce4c4639b6a88423fdb /src/map/clif.c
parentae1d31bec93b2f894f70604d8ae4d4b6961ce0f6 (diff)
downloadhercules-63601a1a0618861f8b987797a04e7e7c8e20bc7a.tar.gz
hercules-63601a1a0618861f8b987797a04e7e7c8e20bc7a.tar.bz2
hercules-63601a1a0618861f8b987797a04e7e7c8e20bc7a.tar.xz
hercules-63601a1a0618861f8b987797a04e7e7c8e20bc7a.zip
Fixed friend adding exploit, bugreport:4629
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15118 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 069a861f4..101504944 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -12279,7 +12279,10 @@ void clif_parse_FriendsListAdd(int fd, struct map_session_data *sd)
clif_friendslist_reqack(sd, f_sd, 2);
return;
}
-
+
+ f_sd->friend_req = sd->status.char_id;
+ sd->friend_req = f_sd->status.char_id;
+
f_fd = f_sd->fd;
WFIFOHEAD(f_fd,packet_len(0x207));
WFIFOW(f_fd,0) = 0x207;
@@ -12311,7 +12314,7 @@ void clif_parse_FriendsListReply(int fd, struct map_session_data *sd)
if (f_sd == NULL)
return;
- if (reply == 0)
+ if (reply == 0 || !( sd->friend_req == f_sd->status.char_id && f_sd->friend_req == sd->status.char_id ) )
clif_friendslist_reqack(f_sd, sd, 1);
else {
int i;