Opened 10 years ago
Closed 10 years ago
#11721 closed bug (fixed)
[BTextView] Typo memset(runArray, 0, sizeof(size))
Reported by: | Janus | Owned by: | axeld |
---|---|---|---|
Priority: | normal | Milestone: | R1 |
Component: | Kits/Interface Kit | Version: | R1/Development |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | All |
Description
In the method AllocRunArray the line memset(runArray, 0, sizeof(size)) should be memset(runArray, 0, size) (Line 2706)
Change History (2)
comment:1 by , 10 years ago
Component: | User Interface → Kits/Interface Kit |
---|---|
Owner: | changed from | to
comment:2 by , 10 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Fixed in hrev48639. I used calloc() instead.