summaryrefslogtreecommitdiffstats
path: root/dvdread
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-15 12:24:07 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-15 12:24:07 +0000
commit8b0d7427508178ce58d63ff2f0659645744c0546 (patch)
tree8a06a84aa8403e6e8b7ee6e9974dd989941dd52c /dvdread
parent56a6cbbfef1c476b06b6f01f4dffa3031324e321 (diff)
downloadmpv-8b0d7427508178ce58d63ff2f0659645744c0546.tar.bz2
mpv-8b0d7427508178ce58d63ff2f0659645744c0546.tar.xz
cosmetics: Do not add trailing whitespace to lines we change.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24073 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'dvdread')
-rw-r--r--dvdread/ifo_read.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dvdread/ifo_read.c b/dvdread/ifo_read.c
index 4c6da87667..73b049ac6c 100644
--- a/dvdread/ifo_read.c
+++ b/dvdread/ifo_read.c
@@ -953,7 +953,7 @@ int ifoRead_TT_SRPT(ifo_handle_t *ifofile) {
info_length = tt_srpt->last_byte + 1 - TT_SRPT_SIZE;
- tt_srpt->title = malloc(info_length);
+ tt_srpt->title = malloc(info_length);
if(!tt_srpt->title) {
free(tt_srpt);
ifofile->tt_srpt = 0;
@@ -1063,7 +1063,7 @@ int ifoRead_VTS_PTT_SRPT(ifo_handle_t *ifofile) {
info_length = vts_ptt_srpt->last_byte + 1 - VTS_PTT_SRPT_SIZE;
- data = malloc(info_length);
+ data = malloc(info_length);
if(!data) {
free(vts_ptt_srpt);
ifofile->vts_ptt_srpt = 0;
@@ -1673,7 +1673,7 @@ static int ifoRead_VOBU_ADMAP_internal(ifo_handle_t *ifofile,
Titles with a VOBS that has no VOBUs. */
CHECK_VALUE(info_length % sizeof(uint32_t) == 0);
- vobu_admap->vobu_start_sectors = malloc(info_length);
+ vobu_admap->vobu_start_sectors = malloc(info_length);
if(!vobu_admap->vobu_start_sectors) {
return 0;
}