{
  "WorkItem": {
    "AffectedComponent": {
      "Name": "",
      "DisplayName": ""
    },
    "ClosedComment": "",
    "ClosedDate": null,
    "CommentCount": 0,
    "Custom": null,
    "Description": "Hello,\n\nI think I have found a malfunctioning behavior of the libary when compressing certain files.\n\nThis is my Code:\n\n```\n        static void Main(string[] args)\n        {\n            Thread thread = new Thread(Compress);\n            thread.Start();\n            Console.ReadLine();\n        }\n\n        static void Compress()\n        {\n            using (ZipFile zip = new ZipFile())\n            {\n                zip.CompressionMethod = CompressionMethod.None;\n                zip.AddDirectory(@\"C:\\Users\\Developer\\Desktop\\ziptest\");\n                zip.Save(@\"C:\\Users\\Developer\\Desktop\\zipfile.zip\");\n            }\n\n            Console.WriteLine(\"Finished.\");\n        }\n```\n\nAnd in the Directory \"C:\\Users\\Developer\\Desktop\\ziptest\" I have four text files with everyone of them containing just the letters \"ab\" which are repeated many times, so that each of the files is exactly 1024 kilobytes in size.\n\nI attached the files in a zip to this question.\n\n___When Running the code you can see above then, the compression stops at some point (no cpu usage) and the Save() function is never left so that the below printed text \"Finished\" is never shown and the creation of the archive is never finished.\n___\nI a\n\nDid I do something wrong?\n\nNote: This is done in a virtual machine with only windows 7 professional x64 and Visual Studio 2013 Ultimate installed on it.\n\nGreetings,\n\nRavior",
    "LastUpdatedDate": "2015-05-26T06:28:24.54-07:00",
    "PlannedForRelease": "",
    "ReleaseVisibleToPublic": false,
    "Priority": {
      "Name": "Unassigned",
      "Severity": 0,
      "Id": 0
    },
    "ProjectName": "DotNetZip",
    "ReportedDate": "2015-05-22T06:46:49.5-07:00",
    "Status": {
      "Name": "Proposed",
      "Id": 1
    },
    "ReasonClosed": {
      "Name": "Unassigned"
    },
    "Summary": "Malfunctioning compressing with certain files?",
    "Type": {
      "Name": "Unassigned",
      "Id": 5
    },
    "VoteCount": 1,
    "Id": 17438
  },
  "FileAttachments": [
    {
      "FileId": 5051,
      "FileName": "testfiles.zip",
      "DownloadUrl": ".\\5051"
    }
  ],
  "Comments": [
    {
      "Message": "I suggest trying the \"zip.ParallelDeflateThreshold = -1\" workaround to see if the issue described here (http://dotnetzip.codeplex.com/workitem/14087) is the root of the problem. If so, then \"zip.ParallelDeflateThreshold = -1\" can be the work-around. I also notice that patch 14368 claims to fix the problem.\n",
      "PostedDate": "2015-05-26T06:28:24.54-07:00",
      "Id": -2147483648
    }
  ]
}