~ubuntu-branches/debian/wheezy/vlc/wheezy

« back to all changes in this revision

Viewing changes to modules/demux/mp4/drms.c

  • Committer: Package Import Robot
  • Author(s): Benjamin Drung, Edward Wang, Reinhard Tartler, Benjamin Drung
  • Date: 2012-06-30 18:39:41 UTC
  • mfrom: (1.3.25)
  • Revision ID: package-import@ubuntu.com-20120630183941-b4e2m0jfcvqb59t2
Tags: 2.0.2-1
[ Edward Wang ]
* New upstream release (Closes: #679625, #664279, LP: #689122, #936488,
  #942126, #971106, #972615, #973051, #987231, #995003, #998538).
  - Fix Ogg Heap buffer overflow. Thanks to Hugo Beauzée-Luyssen
* Add the crystalhd plugin to the vlc distribution.
* libcaca_plugin.so now depends on X11 in this release, so it must
  be installed under vlc (versus vlc-nox).

[ Reinhard Tartler ]
* Urgency set to medium because a security issue is fixed in this release

[ Benjamin Drung ]
* Add new plugins to vlc-nox:
  - crystalhd (Linux amd64 and i386 only)
  - directfb
  - fbosd (Linux only)
  - omxil (Linux only)
* Add build dependencies for new plugins.
* Add new symbols to libvlccore5.
* Switch to debhelper 8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * drms.c: DRMS
3
3
 *****************************************************************************
4
4
 * Copyright (C) 2004 the VideoLAN team
5
 
 * $Id: 39f4225f30f66088e37b8c17ae2029154c79f5c5 $
 
5
 * $Id: 092e4776a5645e2a6033aa64c251f3d4f5aa1852 $
6
6
 *
7
7
 * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8
8
 *          Sam Hocevar <sam@zoy.org>
325
325
            uint32_t p_priv[ 64 ];
326
326
            struct md5_s md5;
327
327
 
328
 
            if( i_len < 64 )
 
328
            if( i_len < 64 || p_drms->p_name == NULL )
329
329
            {
330
330
                i_ret = -2;
331
331
                break;