Mercurial > mplayer.hg
changeset 15797:06a9914af502
fix illegal memory accesses
author | reimar |
---|---|
date | Wed, 22 Jun 2005 11:58:56 +0000 |
parents | 5a39a40aa702 |
children | 9bbda935c1df |
files | libmpdemux/realrtsp/rtsp.c libmpdemux/realrtsp/sdpplin.c |
diffstat | 2 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpdemux/realrtsp/rtsp.c Wed Jun 22 09:39:27 2005 +0000 +++ b/libmpdemux/realrtsp/rtsp.c Wed Jun 22 11:58:56 2005 +0000 @@ -272,10 +272,11 @@ static char *rtsp_get(rtsp_t *s) { - int n=0; + int n=1; char *buffer = malloc(BUF_SIZE); char *string = NULL; + read_stream(s->s, buffer, 1); while (n<BUF_SIZE) { read_stream(s->s, &(buffer[n]), 1); if ((buffer[n-1]==0x0d)&&(buffer[n]==0x0a)) break;
--- a/libmpdemux/realrtsp/sdpplin.c Wed Jun 22 09:39:27 2005 +0000 +++ b/libmpdemux/realrtsp/sdpplin.c Wed Jun 22 11:58:56 2005 +0000 @@ -84,12 +84,12 @@ out[k++] = (b[2] << 6) | b[3]; i = a[2] == '=' ? 1 : (a[3] == '=' ? 2 : 3); if (i < 3) { - out[k]=0; + out[k - 1]=0; *size=k; return out; } } - out[k]=0; + out[k - 1]=0; *size=k; return out; }