Home | History | Annotate | Download | only in minizip

Lines Matching refs:size_comment

660   uLong size_comment;
732 size_comment = 0;
785 if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &size_comment)!=ZIP_OK)
799 if (size_comment>0)
801 pziinit->globalcomment = (char*)ALLOC(size_comment+1);
804 size_comment = ZREAD64(pziinit->z_filefunc, pziinit->filestream, pziinit->globalcomment,size_comment);
805 pziinit->globalcomment[size_comment]=0;
1065 uInt size_comment;
1099 size_comment = 0;
1101 size_comment = (uInt)strlen(comment);
1133 zi->ci.size_centralheader = SIZECENTRALHEADER + size_filename + size_extrafield_global + size_comment;
1151 zip64local_putValue_inmemory(zi->ci.central_header+32,(uLong)size_comment,2);
1176 for (i=0;i<size_comment;i++)