Skip to content

Commit

Permalink
Reduces SYMBOL_NAME_LENGTH_MAXIMUM to 64. (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lichtso authored Jun 1, 2023
1 parent 256b617 commit cb78815
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elf_parser/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use crate::{ArithmeticOverflow, ErrCheckedArithmetic};
use {consts::*, types::*};

const SECTION_NAME_LENGTH_MAXIMUM: usize = 16;
const SYMBOL_NAME_LENGTH_MAXIMUM: usize = 1024;
const SYMBOL_NAME_LENGTH_MAXIMUM: usize = 64;

/// Error definitions
#[derive(Debug, PartialEq, Eq, thiserror::Error)]
Expand Down

0 comments on commit cb78815

Please sign in to comment.