mirror of
				https://github.com/eledio-devices/thirdparty-miniz.git
				synced 2025-10-31 16:14:16 +01:00 
			
		
		
		
	Compare commits
	
		
			7 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | df65d5a1de | ||
|  | 46cdde2ac5 | ||
|  | 3616bf804b | ||
|  | 76237898c0 | ||
|  | 3af5c82fd3 | ||
|  | 55f4dfe1d2 | ||
|  | b344eaf775 | 
							
								
								
									
										30
									
								
								ChangeLog.md
									
									
									
									
									
								
							
							
						
						
									
										30
									
								
								ChangeLog.md
									
									
									
									
									
								
							| @@ -1,5 +1,35 @@ | ||||
| ## Changelog | ||||
|  | ||||
| ### 2.0.8 | ||||
|  | ||||
|  - Remove unimplemented functions (mz_zip_locate_file and mz_zip_locate_file_v2) | ||||
|  - Add license, changelog, readme and example files to release zip | ||||
|  - Fix heap overflow to user buffer in tinfl_status tinfl_decompress | ||||
|  - Fix corrupt archive if uncompressed file smaller than 4 byte and file is added by mz_zip_writer_add_mem* | ||||
|  | ||||
| ### 2.0.7 | ||||
|  | ||||
|  - Removed need in C++ compiler in cmake build | ||||
|  - Fixed loads of uninitilized value errors found with Valgrind by memsetting m_dict to 0 in tdefl_init. | ||||
|  - Fix resource leak in mz_zip_reader_init_file_v2 | ||||
|  - Fix assert with mz_zip_writer_add_mem* w/MZ_DEFAULT_COMPRESSION | ||||
|  - cmake build: install library and headers | ||||
|  - Remove _LARGEFILE64_SOURCE requirement from apple defines for large files | ||||
|  | ||||
| ### 2.0.6 | ||||
|  | ||||
|  - Improve MZ_ZIP_FLAG_WRITE_ZIP64 documentation | ||||
|  - Remove check for cur_archive_file_ofs > UINT_MAX, because cur_archive_file_ofs is not used after this point | ||||
|  - Add cmake debug configuration | ||||
|  - Fix PNG height when creating png files | ||||
|  - Add "iterative" file extraction method based on mz_zip_reader_extract_to_callback. | ||||
|  - Option to use memcpy for unaligned data access | ||||
|  - Define processor/arch macros as zero if not set to one | ||||
|  | ||||
| ### 2.0.4/2.0.5 | ||||
|  | ||||
|  - Fix compilation with the various omission compile definitions | ||||
|  | ||||
| ### 2.0.3 | ||||
|  | ||||
| - Fix GCC/clang compile warnings | ||||
|   | ||||
| @@ -41,9 +41,27 @@ done | ||||
| rm test.out | ||||
| rm main.c | ||||
|  | ||||
| cp ChangeLog.md amalgamation/ | ||||
| cp LICENSE amalgamation/ | ||||
| cp readme.md amalgamation/ | ||||
| mkdir -p amalgamation/examples | ||||
| cp examples/* amalgamation/examples/ | ||||
|  | ||||
| cd amalgamation | ||||
| ! test -e miniz.zip || rm miniz.zip | ||||
| echo -e "miniz.c\nminiz.h" | zip -@ miniz | ||||
| cat << EOF | zip -@ miniz | ||||
| miniz.c | ||||
| miniz.h | ||||
| ChangeLog.md | ||||
| LICENSE | ||||
| readme.md | ||||
| examples/example1.c | ||||
| examples/example2.c | ||||
| examples/example3.c | ||||
| examples/example4.c | ||||
| examples/example5.c | ||||
| examples/example6.c | ||||
| EOF | ||||
| cd .. | ||||
|  | ||||
| echo "Amalgamation created." | ||||
|   | ||||
							
								
								
									
										8
									
								
								miniz.h
									
									
									
									
									
								
							
							
						
						
									
										8
									
								
								miniz.h
									
									
									
									
									
								
							| @@ -1,4 +1,4 @@ | ||||
| /* miniz.c 2.0.7 - public domain deflate/inflate, zlib-subset, ZIP reading/writing/appending, PNG writing | ||||
| /* miniz.c 2.0.8 - public domain deflate/inflate, zlib-subset, ZIP reading/writing/appending, PNG writing | ||||
|    See "unlicense" statement at the end of this file. | ||||
|    Rich Geldreich <richgel99@gmail.com>, last updated Oct. 13, 2013 | ||||
|    Implements RFC 1950: http://www.ietf.org/rfc/rfc1950.txt and RFC 1951: http://www.ietf.org/rfc/rfc1951.txt | ||||
| @@ -234,11 +234,11 @@ enum | ||||
|     MZ_DEFAULT_COMPRESSION = -1 | ||||
| }; | ||||
|  | ||||
| #define MZ_VERSION "10.0.2" | ||||
| #define MZ_VERNUM 0xA020 | ||||
| #define MZ_VERSION "10.0.3" | ||||
| #define MZ_VERNUM 0xA030 | ||||
| #define MZ_VER_MAJOR 10 | ||||
| #define MZ_VER_MINOR 0 | ||||
| #define MZ_VER_REVISION 2 | ||||
| #define MZ_VER_REVISION 3 | ||||
| #define MZ_VER_SUBREVISION 0 | ||||
|  | ||||
| #ifndef MINIZ_NO_ZLIB_APIS | ||||
|   | ||||
| @@ -540,18 +540,19 @@ tinfl_status tinfl_decompress(tinfl_decompressor *r, const mz_uint8 *pIn_buf_nex | ||||
|                     } | ||||
|                 } | ||||
| #endif | ||||
|                 do | ||||
|                 while(counter>2) | ||||
|                 { | ||||
|                     pOut_buf_cur[0] = pSrc[0]; | ||||
|                     pOut_buf_cur[1] = pSrc[1]; | ||||
|                     pOut_buf_cur[2] = pSrc[2]; | ||||
|                     pOut_buf_cur += 3; | ||||
|                     pSrc += 3; | ||||
|                 } while ((int)(counter -= 3) > 2); | ||||
|                 if ((int)counter > 0) | ||||
| 					counter -= 3; | ||||
|                 } | ||||
|                 if (counter > 0) | ||||
|                 { | ||||
|                     pOut_buf_cur[0] = pSrc[0]; | ||||
|                     if ((int)counter > 1) | ||||
|                     if (counter > 1) | ||||
|                         pOut_buf_cur[1] = pSrc[1]; | ||||
|                     pOut_buf_cur += counter; | ||||
|                 } | ||||
|   | ||||
							
								
								
									
										34
									
								
								miniz_zip.c
									
									
									
									
									
								
							
							
						
						
									
										34
									
								
								miniz_zip.c
									
									
									
									
									
								
							| @@ -3186,6 +3186,17 @@ mz_bool mz_zip_writer_add_mem_ex_v2(mz_zip_archive *pZip, const char *pArchive_n | ||||
|     } | ||||
| #endif /* #ifndef MINIZ_NO_TIME */ | ||||
|  | ||||
| 	if (!(level_and_flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) | ||||
| 	{ | ||||
| 		uncomp_crc32 = (mz_uint32)mz_crc32(MZ_CRC32_INIT, (const mz_uint8 *)pBuf, buf_size); | ||||
| 		uncomp_size = buf_size; | ||||
| 		if (uncomp_size <= 3) | ||||
| 		{ | ||||
| 			level = 0; | ||||
| 			store_data_uncompressed = MZ_TRUE; | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
|     archive_name_size = strlen(pArchive_name); | ||||
|     if (archive_name_size > MZ_UINT16_MAX) | ||||
|         return mz_zip_set_error(pZip, MZ_ZIP_INVALID_FILENAME); | ||||
| @@ -3301,24 +3312,13 @@ mz_bool mz_zip_writer_add_mem_ex_v2(mz_zip_archive *pZip, const char *pArchive_n | ||||
|         cur_archive_file_ofs += archive_name_size; | ||||
|     } | ||||
|  | ||||
|     if (user_extra_data_len > 0) | ||||
|     { | ||||
|         if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, user_extra_data, user_extra_data_len) != user_extra_data_len) | ||||
|             return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); | ||||
| 	if (user_extra_data_len > 0) | ||||
| 	{ | ||||
| 		if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, user_extra_data, user_extra_data_len) != user_extra_data_len) | ||||
| 			return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); | ||||
|  | ||||
|         cur_archive_file_ofs += user_extra_data_len; | ||||
|     } | ||||
|  | ||||
|     if (!(level_and_flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) | ||||
|     { | ||||
|         uncomp_crc32 = (mz_uint32)mz_crc32(MZ_CRC32_INIT, (const mz_uint8 *)pBuf, buf_size); | ||||
|         uncomp_size = buf_size; | ||||
|         if (uncomp_size <= 3) | ||||
|         { | ||||
|             level = 0; | ||||
|             store_data_uncompressed = MZ_TRUE; | ||||
|         } | ||||
|     } | ||||
| 		cur_archive_file_ofs += user_extra_data_len; | ||||
| 	} | ||||
|  | ||||
|     if (store_data_uncompressed) | ||||
|     { | ||||
|   | ||||
| @@ -237,13 +237,6 @@ MZ_FILE *mz_zip_get_cfile(mz_zip_archive *pZip); | ||||
| /* Reads n bytes of raw archive data, starting at file offset file_ofs, to pBuf. */ | ||||
| size_t mz_zip_read_archive_data(mz_zip_archive *pZip, mz_uint64 file_ofs, void *pBuf, size_t n); | ||||
|  | ||||
| /* Attempts to locates a file in the archive's central directory. */ | ||||
| /* Valid flags: MZ_ZIP_FLAG_CASE_SENSITIVE, MZ_ZIP_FLAG_IGNORE_PATH */ | ||||
| /* Returns -1 if the file cannot be found. */ | ||||
| int mz_zip_locate_file(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags); | ||||
| /* Returns MZ_FALSE if the file cannot be found. */ | ||||
| mz_bool mz_zip_locate_file_v2(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags, mz_uint32 *pIndex); | ||||
|  | ||||
| /* All mz_zip funcs set the m_last_error field in the mz_zip_archive struct. These functions retrieve/manipulate this field. */ | ||||
| /* Note that the m_last_error functionality is not thread safe. */ | ||||
| mz_zip_error mz_zip_set_last_error(mz_zip_archive *pZip, mz_zip_error err_num); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user