diff options
author | dinoex <dinoex@FreeBSD.org> | 2012-01-31 04:41:33 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2012-01-31 04:41:33 +0000 |
commit | 5445f9d11277e986b5e69c4c7ef2a9da43969af4 (patch) | |
tree | 78553b851a4f37112a12925f29940ad8afdc5aff | |
parent | 12ce291f247e314d456a7b574fa3a2f443071c95 (diff) | |
download | FreeBSD-ports-5445f9d11277e986b5e69c4c7ef2a9da43969af4.zip FreeBSD-ports-5445f9d11277e986b5e69c4c7ef2a9da43969af4.tar.gz |
- fix bug in ymodem with non zero malloc
PR: 164347
Submitted by: NAGATA Shinya
-rw-r--r-- | comms/lrzsz/Makefile | 2 | ||||
-rw-r--r-- | comms/lrzsz/files/patch-lsz.c | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/comms/lrzsz/Makefile b/comms/lrzsz/Makefile index 929c976..4598aa2 100644 --- a/comms/lrzsz/Makefile +++ b/comms/lrzsz/Makefile @@ -7,7 +7,7 @@ PORTNAME= lrzsz PORTVERSION= 0.12.20 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= comms MASTER_SITES= http://www.ohse.de/uwe/releases/ diff --git a/comms/lrzsz/files/patch-lsz.c b/comms/lrzsz/files/patch-lsz.c new file mode 100644 index 0000000..0d055f3 --- /dev/null +++ b/comms/lrzsz/files/patch-lsz.c @@ -0,0 +1,10 @@ +--- src/lsz.c.orig 1998-12-30 07:07:59.000000000 +0900 ++++ src/lsz.c 2012-01-21 10:44:49.000000000 +0900 +@@ -1191,6 +1191,7 @@ + struct stat f; + + name2=alloca(PATH_MAX+1); ++ f.st_size = 0; + + if (protocol==ZM_XMODEM) { + if (Verbose && *zi->fname && fstat(fileno(input_f), &f)!= -1) {
\ No newline at end of file |