Skip to content

Commit

Permalink
Fix seg fault with long comment lines (#4306)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisws authored Sep 4, 2024
1 parent 42022c3 commit ed61bdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/raylib_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ typedef struct EnumInfo {
// Function info data
typedef struct FunctionInfo {
char name[64]; // Function name
char desc[128]; // Function description (comment at the end)
char desc[256]; // Function description (comment at the end)
char retType[32]; // Return value type
int paramCount; // Number of function parameters
char paramType[MAX_FUNCTION_PARAMETERS][32]; // Parameters type
Expand Down

0 comments on commit ed61bdb

Please sign in to comment.