You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
732 B

  1. From 522883505d3b02e3294f045f49007b61c00e2c31 Mon Sep 17 00:00:00 2001
  2. From: Chao Liu <liuchao173@huawei.com>
  3. Date: Wed, 8 Jun 2022 10:04:02 +0800
  4. Subject: [PATCH] check whether savedptr is NULL before invoking strlen
  5. savedptr can be null in musl libc, so the strlen(NULL) will segfault
  6. Signed-off-by: Chao Liu <liuchao173@huawei.com>
  7. ---
  8. procinterrupts.c | 2 +-
  9. 1 file changed, 1 insertion(+), 1 deletion(-)
  10. --- a/procinterrupts.c
  11. +++ b/procinterrupts.c
  12. @@ -178,7 +178,7 @@ void init_irq_class_and_type(char *saved
  13. }
  14. #ifdef AARCH64
  15. - if (strlen(savedptr) > 0) {
  16. + if (savedptr && strlen(savedptr) > 0) {
  17. snprintf(irq_fullname, PATH_MAX, "%s %s", last_token, savedptr);
  18. tmp = strchr(irq_fullname, '\n');
  19. if (tmp)