8268512: More content for ContentInfo

Reviewed-by: ahgross, weijun, rhalade
This commit is contained in:
Hai-May Chao 2021-07-29 19:20:45 +00:00 committed by Henry Jen
parent f18deeb69e
commit e069a3b8bf

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1996, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -127,7 +127,9 @@ public class ContentInfo {
if (oldStyle) { if (oldStyle) {
// JDK1.1.x-style encoding // JDK1.1.x-style encoding
content = typeAndContent[1]; if (typeAndContent.length > 1) { // content is OPTIONAL
content = typeAndContent[1];
}
} else { } else {
// This is the correct, standards-compliant encoding. // This is the correct, standards-compliant encoding.
// Parse the content (OPTIONAL field). // Parse the content (OPTIONAL field).