{
  "WorkItem": {
    "AffectedComponent": {
      "Name": "",
      "DisplayName": ""
    },
    "ClosedComment": "",
    "ClosedDate": null,
    "CommentCount": 0,
    "Custom": null,
    "Description": "The error is coming at the moment when i make --> input.GetNextEntry() by Extracting from this ZIP \n\nhttps://www.dropbox.com/s/k8my8amsunxl6m7/Erste%20Schritte%20mit%20Dropbox.pdf?dl=0 \n\nCan anybody help me? \n\nmy code for extracting:\n\n                byte[] buffer = new byte[2048];\n                int n;\n\n                using (var raw = File.Open(zipFilePath, FileMode.Open, FileAccess.Read))\n                {\n                    using (var input = new ZipInputStream(raw))\n                    {\n                        if (!string.IsNullOrEmpty(password))\n                            input.Password = password;\n\n                        ZipEntry entry;\n\n                        while ((entry = input.GetNextEntry()) != null)\n                        {\n                            if (entry.IsDirectory) continue;\n\n                            string outputPath = Path.Combine(targetPath, entry.FileName.Split(new []{ '/'}).Last());\n\n                            using (var output = File.Open(outputPath, FileMode.Create, FileAccess.ReadWrite))\n                            {\n                                while ((n = input.Read(buffer, 0, buffer.Length)) > 0)\n                                {\n                                    output.Write(buffer, 0, n);\n                                }\n                            }\n                        }\n                    }\n                }",
    "LastUpdatedDate": "2016-12-21T06:11:05.307-08:00",
    "PlannedForRelease": "",
    "ReleaseVisibleToPublic": false,
    "Priority": {
      "Name": "Unassigned",
      "Severity": 0,
      "Id": 0
    },
    "ProjectName": "DotNetZip",
    "ReportedDate": "2016-12-21T06:11:05.307-08:00",
    "Status": {
      "Name": "Proposed",
      "Id": 1
    },
    "ReasonClosed": {
      "Name": "Unassigned"
    },
    "Summary": "Bad signature (0x6F9E597E) at position  0x00AF8F62",
    "Type": {
      "Name": "Unassigned",
      "Id": 5
    },
    "VoteCount": 1,
    "Id": 17733
  },
  "FileAttachments": [],
  "Comments": []
}