FreeBSD Bugzilla – Attachment 54811 Details for
Bug 82917
[PATCH] update multimedia/lxdvdrip to 1.46
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
patch-lxdvdrip.c
patch-lxdvdrip.c (text/x-csrc; charset=us-ascii), 748 bytes, created by
Ulrich Spoerlein
on 2005-07-03 19:45:13 UTC
(
hide
)
Description:
patch-lxdvdrip.c
Filename:
MIME Type:
Creator:
Ulrich Spoerlein
Created:
2005-07-03 19:45:13 UTC
Size:
748 bytes
patch
obsolete
>--- lxdvdrip.c.orig Thu May 5 16:25:21 2005 >+++ lxdvdrip.c Thu May 5 16:32:23 2005 >@@ -742,7 +742,7 @@ > return -1; > } > >- if (fseek (filehandle, 32808, SEEK_SET)) >+ if (fseek (filehandle, 32768, SEEK_SET)) > { > fclose (filehandle); > switch (lSprache) >@@ -762,7 +762,10 @@ > return -1; > } > >- if (32 != (i = fread (title, 1, 32, filehandle))) >+#define DVD_SEC_SIZ 2048 >+ char tempBuf[DVD_SEC_SIZ]; >+ >+ if (DVD_SEC_SIZ != fread (tempBuf, 1, DVD_SEC_SIZ, filehandle)) > { > fclose (filehandle); > switch (lSprache) >@@ -780,7 +783,8 @@ > strcpy (title, "unknown"); > return -1; > } >- >+ snprintf( title, 32, "%s", tempBuf + 40 ); >+ i=32; > fclose (filehandle); > > title[32] = '\0';
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 82917
:
54810
| 54811