Parcourir la source

powerpc/oprofile: fix potential buffer overrun in op_model_cell.c

Fix potential initial_lfsr buffer overrun.
Writing past the end of the buffer could happen when index == ENTRIES

Signed-off-by: Denis Kirjanov <dkirjanov@kernel.org>
Cc: stable@kernel.org
Signed-off-by: Robert Richter <robert.richter@amd.com>
Denis Kirjanov il y a 15 ans
Parent
commit
238c1a78c9
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      arch/powerpc/oprofile/op_model_cell.c

+ 1 - 1
arch/powerpc/oprofile/op_model_cell.c

@@ -1077,7 +1077,7 @@ static int calculate_lfsr(int n)
 		index = ENTRIES-1;
 		index = ENTRIES-1;
 
 
 	/* make sure index is valid */
 	/* make sure index is valid */
-	if ((index > ENTRIES) || (index < 0))
+	if ((index >= ENTRIES) || (index < 0))
 		index = ENTRIES-1;
 		index = ENTRIES-1;
 
 
 	return initial_lfsr[index];
 	return initial_lfsr[index];