runtime_loader: increase max length for image names.

* was previously 32, which would truncate longer shared object names.
* fixed #13436.
This commit is contained in:
Jérôme Duval
2017-04-20 18:23:36 +02:00
parent 41458d977a
commit 43542cabdd
@@ -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;