/[smeserver]/rpms/php/sme8/php-5.3.3-CVE-2012-2386.patch
ViewVC logotype

Diff of /rpms/php/sme8/php-5.3.3-CVE-2012-2386.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.1 by slords, Fri Jun 29 14:45:08 2012 UTC Revision 1.1.2.1 by slords, Fri Jun 29 14:45:08 2012 UTC
# Line 0  Line 1 
1    
2    https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2012-2386
3    
4    http://git.php.net/?p=php-src.git;a=commit;h=158d8a6b088662ce9d31e0c777c6ebe90efdc854
5    
6    --- php-5.3.3/ext/phar/tar.c.cve2386
7    +++ php-5.3.3/ext/phar/tar.c
8    @@ -38,7 +38,7 @@ static php_uint32 phar_tar_number(char *
9     /* }}} */
10    
11     /* adapted from format_octal() in libarchive
12    - *
13    + *
14      * Copyright (c) 2003-2009 Tim Kientzle
15      * All rights reserved.
16      *
17    @@ -161,7 +161,7 @@ static int phar_tar_process_metadata(pha
18            size_t save = php_stream_tell(fp), read;
19            phar_entry_info *mentry;
20    
21    -       metadata = (char *) emalloc(entry->uncompressed_filesize + 1);
22    +       metadata = (char *) safe_emalloc(1, entry->uncompressed_filesize, 1);
23    
24            read = php_stream_read(fp, metadata, entry->uncompressed_filesize);
25            if (read != entry->uncompressed_filesize) {
26    @@ -367,7 +367,7 @@ bail:
27                            }
28    
29                            read = php_stream_read(fp, buf, sizeof(buf));
30    -      
31    +
32                            if (read != sizeof(buf)) {
33                                    efree(entry.filename);
34                                    if (error) {


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed