Skip to content

Commit 0e49c49

Browse files
committedFeb 18, 2020
8239224: libproc_impl.c previous_thr may be used uninitialized warning
Reviewed-by: clanger, dholmes
1 parent b6c1b49 commit 0e49c49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/jdk.hotspot.agent/linux/native/libsaproc/libproc_impl.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -273,7 +273,7 @@ void delete_thread_info(struct ps_prochandle* ph, thread_info* thr_to_be_removed
273273
if (thr_to_be_removed == ph->threads) {
274274
ph->threads = ph->threads->next;
275275
} else {
276-
thread_info* previous_thr;
276+
thread_info* previous_thr = NULL;
277277
while (current_thr && current_thr != thr_to_be_removed) {
278278
previous_thr = current_thr;
279279
current_thr = current_thr->next;

0 commit comments

Comments
 (0)
Please sign in to comment.