You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your code uses reader.ReadLine() to break a jar manifest into separate lines. When I looked at the code for that function, it did not appear to treat lone CR (carriage return) characters as line terminators. The spec for jar file manifests says that a newline is denoted by CR NL, NL alone, or CR alone.
Your code uses reader.ReadLine() to break a jar manifest into separate lines. When I looked at the code for that function, it did not appear to treat lone CR (carriage return) characters as line terminators. The spec for jar file manifests says that a newline is denoted by CR NL, NL alone, or CR alone.
Here is a link to the spec: https://docs.oracle.com/javase/7/docs/technotes/guides/jar/jar.html#Manifest_Specification
The text was updated successfully, but these errors were encountered: