Browse Source

revert

pull/1130/head
Jeff Becker 7 years ago
parent
commit
008a064764
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05
  1. 6
      libi2pd/Garlic.cpp

6
libi2pd/Garlic.cpp

@ -538,7 +538,7 @@ namespace garlic
{ {
case eGarlicDeliveryTypeLocal: case eGarlicDeliveryTypeLocal:
LogPrint (eLogDebug, "Garlic: type local"); LogPrint (eLogDebug, "Garlic: type local");
if (offset > (int)len || offset <= 0) if (offset > (int)len)
{ {
LogPrint (eLogError, "Garlic: message is too short"); LogPrint (eLogError, "Garlic: message is too short");
break; break;
@ -594,7 +594,7 @@ namespace garlic
offset = buf - buf1; offset = buf - buf1;
if (!from) // received directly if (!from) // received directly
{ {
if (offset > (int)len || offset <= 0) if (offset > (int)len)
{ {
LogPrint (eLogError, "Garlic: message is too short"); LogPrint (eLogError, "Garlic: message is too short");
break; break;
@ -609,7 +609,7 @@ namespace garlic
default: default:
LogPrint (eLogWarning, "Garlic: unknown delivery type ", (int)deliveryType); LogPrint (eLogWarning, "Garlic: unknown delivery type ", (int)deliveryType);
} }
if (offset > (int)len || offset <= 0) if (offset > (int)len)
{ {
LogPrint (eLogError, "Garlic: message is too short"); LogPrint (eLogError, "Garlic: message is too short");
break; break;

Loading…
Cancel
Save