Skip to content

Commit

Permalink
Fixing servlet ResponseWriter#writeResponseStatusAndHeaders for error…
Browse files Browse the repository at this point in the history
… states

Bug 5279

Signed-off-by: jansupol <[email protected]>
  • Loading branch information
jansupol authored and senivam committed Oct 17, 2023
1 parent d4a0612 commit a837087
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, 2022 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2023 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -125,7 +125,7 @@ public OutputStream writeResponseStatusAndHeaders(final long contentLength, fina
// the invocation of sendError as on some Servlet implementations
// modification of the response headers will have no effect
// after the invocation of sendError.
final MultivaluedMap<String, String> headers = getResponseContext().getStringHeaders();
final MultivaluedMap<String, String> headers = responseContext.getStringHeaders();
for (final Map.Entry<String, List<String>> e : headers.entrySet()) {
final Iterator<String> it = e.getValue().iterator();
if (!it.hasNext()) {
Expand Down

0 comments on commit a837087

Please sign in to comment.