diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-07-27 18:06:45 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-07-27 18:06:45 +0000 |
commit | 7450bd283f0082fe1b3499142ad5273067db70c6 (patch) | |
tree | 6d3d3ac6ca6ced550ccf97debc3cd288c17776b4 /misc/libdvdcss-1.2.6-network.patch | |
parent | 25ba0f3888a1e4c3b92f926ce8828d56e40e3c61 (diff) | |
download | xine-lib-7450bd283f0082fe1b3499142ad5273067db70c6.tar.gz xine-lib-7450bd283f0082fe1b3499142ad5273067db70c6.tar.bz2 |
from the docs of sprintf: "when the strings overlap, the behaviour is undefined"
(actually it works with glibc and sprintf, but not with snprintf)
CVS patchset: 6859
CVS date: 2004/07/27 18:06:45
Diffstat (limited to 'misc/libdvdcss-1.2.6-network.patch')
-rw-r--r-- | misc/libdvdcss-1.2.6-network.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/libdvdcss-1.2.6-network.patch b/misc/libdvdcss-1.2.6-network.patch index 18fbc3652..cf23ba6ff 100644 --- a/misc/libdvdcss-1.2.6-network.patch +++ b/misc/libdvdcss-1.2.6-network.patch @@ -432,7 +432,7 @@ diff -u --new-file libdvdcss-1.2.6/src/network.c libdvdcss-1.2.6-network/src/net + + /* Each line sent is '\n' terminated */ + if((buf[strlen(buf)] == '\0') && (buf[strlen(buf) - 1] != '\n')) -+ sprintf(buf, "%s%c", buf, '\n'); ++ strcat(buf, "\n"); + + if( sock_data_write(socket, buf, strlen(buf)) < (int)strlen(buf) ) + { |