~nutznboltz-deactivatedaccount/ubuntu/precise/gnutls26/fix-lp926350

« back to all changes in this revision

Viewing changes to build-aux/useless-if-before-free

  • Committer: Package Import Robot
  • Author(s): Andreas Metzler
  • Date: 2011-10-01 15:28:13 UTC
  • mfrom: (12.1.20 sid)
  • Revision ID: package-import@ubuntu.com-20111001152813-yygm1c4cxonfxhzy
Tags: 2.12.11-1
* New upstream version.
  + Allow CA importing of 0 certificates to succeed. Closes: #640639
* Add libp11-kit-dev to libgnutls-dev dependencies. (see #643811)
* [20_guiledocstring.diff] guile: Fix docstring extraction with CPP 4.5+.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
  & eval 'exec perl -wST "$0" $argv:q'
3
3
    if 0;
4
4
# Detect instances of "if (p) free (p);".
5
 
# Likewise for "if (p != NULL) free (p);".  And with braces.
6
 
# Also detect "if (NULL != p) free (p);".
7
 
# And with 0 in place of NULL.
 
5
# Likewise "if (p != 0)", "if (0 != p)", or with NULL; and with braces.
8
6
 
9
 
my $VERSION = '2009-04-16 15:57'; # UTC
 
7
my $VERSION = '2011-01-09 01:39'; # UTC
10
8
# The definition above must lie within the first 8 lines in order
11
9
# for the Emacs time-stamp write hook (at end) to update it.
12
10
# If you change this file with Emacs, please let the write hook
13
11
# do its job.  Otherwise, update this string manually.
14
12
 
15
 
# Copyright (C) 2008-2010 Free Software Foundation, Inc.
 
13
# Copyright (C) 2008-2011 Free Software Foundation, Inc.
16
14
 
17
15
# This program is free software: you can redistribute it and/or modify
18
16
# it under the terms of the GNU General Public License as published by
63
61
 
64
62
OPTIONS:
65
63
 
66
 
   --list       print only the name of each matching FILE (\0-terminated)
 
64
   --list       print only the name of each matching FILE (\\0-terminated)
67
65
   --name=N     add name N to the list of \`free\'-like functions to detect;
68
66
                  may be repeated
69
67