From: Jonas Gorski Date: Mon, 25 Feb 2013 12:45:48 +0000 (+0000) Subject: AA: [packages/ctorrent] allow negative integers ... should fix random "error, initial... X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=51eb5867f245a012c87b82c3402d0c0e235a2bb0;p=openwrt%2Fsvn-archive%2Farchive.git AA: [packages/ctorrent] allow negative integers ... should fix random "error, initial meta info failed" Backport of r35041. SVN-Revision: 35771 --- diff --git a/net/ctorrent/Makefile b/net/ctorrent/Makefile index c8593d91f7..16504e2a34 100644 --- a/net/ctorrent/Makefile +++ b/net/ctorrent/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ctorrent PKG_VERSION:=dnh3.3.2 -PKG_RELEASE:=5 +PKG_RELEASE:=6 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@SF/dtorrent \ diff --git a/net/ctorrent/patches/100-negative-ints.patch b/net/ctorrent/patches/100-negative-ints.patch new file mode 100644 index 0000000000..864ce1b697 --- /dev/null +++ b/net/ctorrent/patches/100-negative-ints.patch @@ -0,0 +1,13 @@ +--- a/bencode.cpp ++++ b/bencode.cpp +@@ -44,6 +44,10 @@ size_t buf_long(const char *b,size_t len + p++; len--; + } + ++ if( *p == '-'){ ++ p++; len--; ++ } ++ + for(psave = p; len && isdigit(*p); p++,len--) ; + + if(!len || MAX_INT_SIZ < (p - psave) || *p != endchar) return 0;