1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-09 11:27:53 +00:00

Merge pull request #555 from majestrate/fix-ff-off-by-one

off by one?
This commit is contained in:
orignal 2016-06-30 15:07:26 -04:00 committed by GitHub
commit f51ba499d5

View File

@ -621,7 +621,7 @@ namespace data
uint32_t replyTunnelID = 0;
if (flag & DATABASE_LOOKUP_DELIVERY_FLAG) //reply to tunnel
{
replyTunnelID = bufbe32toh (buf + 64);
replyTunnelID = bufbe32toh (buf + 65);
excluded += 4;
}
uint16_t numExcluded = bufbe16toh (excluded);