We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d08b5bd commit a8ac287Copy full SHA for a8ac287
src/java.base/share/native/libzip/Inflater.c
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
@@ -49,8 +49,8 @@ JNIEXPORT void JNICALL
49
Java_java_util_zip_Inflater_initIDs(JNIEnv *env, jclass cls)
50
{
51
inputConsumedID = (*env)->GetFieldID(env, cls, "inputConsumed", "I");
52
- outputConsumedID = (*env)->GetFieldID(env, cls, "outputConsumed", "I");
53
CHECK_NULL(inputConsumedID);
+ outputConsumedID = (*env)->GetFieldID(env, cls, "outputConsumed", "I");
54
CHECK_NULL(outputConsumedID);
55
}
56
0 commit comments