~ubuntu-branches/ubuntu/raring/libxfont/raring-updates

« back to all changes in this revision

Viewing changes to src/util/private.c

  • Committer: Package Import Robot
  • Author(s): Cyril Brulebois, Cyril Brulebois, Julien Cristau
  • Date: 2012-03-04 09:24:59 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20120304092459-cbu7e0ujz24lslpt
Tags: 1:1.4.5-1
[ Cyril Brulebois ]
* New upstream release.
* Switch to dh:
  - Bump debhelper build-dep and compat.
  - Rewrite debian/rules, using autoreconf and quilt sequences.
  - Adjust build dependencies accordingly.
  - Use build-main and build-udeb as build directories.
  - Adjust .install accordingly.
* Remove xsfbs accordingly.
* Add support for hardened build flags through dpkg-buildflags, based
  on a patch by Moritz Muehlenhoff, thanks! (Closes: #654154).

[ Julien Cristau ]
* Remove David Nusinow from Uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
    return _FontPrivateAllocateIndex++;
43
43
}
44
44
 
45
 
FontPtr 
 
45
FontPtr
46
46
CreateFontRec (void)
47
47
{
48
48
    FontPtr pFont;
51
51
    size = sizeof(FontRec) + (sizeof(pointer) * _FontPrivateAllocateIndex);
52
52
 
53
53
    pFont = malloc(size);
54
 
    
 
54
 
55
55
    if(pFont) {
56
56
        bzero((char*)pFont, size);
57
57
        pFont->maxPrivate = _FontPrivateAllocateIndex - 1;