From 43542cabdd1c3428c5e341cf2ed113e13b1f0c62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Thu, 20 Apr 2017 18:08:13 +0200 Subject: [PATCH] runtime_loader: increase max length for image names. * was previously 32, which would truncate longer shared object names. * fixed #13436. --- headers/private/runtime_loader/runtime_loader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/private/runtime_loader/runtime_loader.h b/headers/private/runtime_loader/runtime_loader.h index d93f676af2..94be94cbf4 100644 --- a/headers/private/runtime_loader/runtime_loader.h +++ b/headers/private/runtime_loader/runtime_loader.h @@ -88,7 +88,7 @@ typedef struct elf_version_info { typedef struct image_t { // image identification char path[B_PATH_NAME_LENGTH]; - char name[B_OS_NAME_LENGTH]; + char name[B_FILE_NAME_LENGTH]; image_id id; image_type type;