Skip to content

Commit ed61bdb

Browse files
authored
Fix seg fault with long comment lines (#4306)
#4304
1 parent 42022c3 commit ed61bdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parser/raylib_parser.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ typedef struct EnumInfo {
139139
// Function info data
140140
typedef struct FunctionInfo {
141141
char name[64]; // Function name
142-
char desc[128]; // Function description (comment at the end)
142+
char desc[256]; // Function description (comment at the end)
143143
char retType[32]; // Return value type
144144
int paramCount; // Number of function parameters
145145
char paramType[MAX_FUNCTION_PARAMETERS][32]; // Parameters type

0 commit comments

Comments
 (0)