openbsd-ports/net/samba/patches/patch-lib_iconv.c
mbalmer 891aaf69f6 Update Samba to version 3.0.28 and add two patches from FreeBSD to allow
for non FFS filesystems (e.g. CD-ROMs) to be shared with Samba again.

This fixes CVE-2007-6015 and several other security problems.

ok winiger
2007-12-14 08:53:27 +00:00

13 lines
404 B
C

$OpenBSD: patch-lib_iconv.c,v 1.1 2007/12/14 08:53:27 mbalmer Exp $
--- lib/iconv.c.orig Tue Jun 5 01:45:05 2007
+++ lib/iconv.c Tue Jun 5 01:46:09 2007
@@ -137,7 +137,7 @@
char **outbuf, size_t *outbytesleft)
{
size_t ret = iconv((iconv_t)cd,
- (char **)inbuf, inbytesleft,
+ inbuf, inbytesleft,
outbuf, outbytesleft);
if (ret == (size_t)-1) {
int saved_errno = errno;