~ubuntu-branches/debian/sid/isc-dhcp/sid

« back to all changes in this revision

Viewing changes to common/tree.c

  • Committer: Package Import Robot
  • Author(s): Michael Gilbert, Andrew Pollock, Michael Gilbert
  • Date: 2012-04-28 16:00:49 UTC
  • Revision ID: package-import@ubuntu.com-20120428160049-e9p426h82w2i6qdq
Tags: 4.2.2.dfsg.1-5
[ Andrew Pollock ]
* debian/dhclient.conf: send the hostname (closes: #151820) 

[ Michael Gilbert ]
* Fix cve-2011-4868: error in DDNS handling with IPv6 (closes: #655746)
* Fix cve-2011-4539: error in regular expression handling
  (closes: #652259)
* Make dependencies diff-able
* Add myself to uploaders
* Remove all automatically generated files in clean rule
* Medium urgency for security updates

Show diffs side-by-side

added added

removed removed

Lines of Context:
1120
1120
                *result = 0;
1121
1121
                memset(&re, 0, sizeof(re));
1122
1122
                if (bleft && bright &&
 
1123
                    (left.data != NULL) && (right.data != NULL) &&
1123
1124
                    (regcomp(&re, (char *)right.data, regflags) == 0) &&
1124
1125
                    (regexec(&re, (char *)left.data, (size_t)0, NULL, 0) == 0))
1125
1126
                                *result = 1;