Skip to content

Commit dea3387

Browse files
committed
buffer overflow fix
1 parent c40206f commit dea3387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

implot_demo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ void ShowDemo_SubplotsSizing() {
983983
if (ImPlot::BeginSubplots("My Subplots", rows, cols, ImVec2(-1,400), flags, rratios, cratios)) {
984984
for (int i = 0; i < rows*cols; ++i) {
985985
if (ImPlot::BeginPlot("",NULL,NULL,ImVec2(),ImPlotFlags_NoLegend,ImPlotAxisFlags_NoTickLabels,ImPlotAxisFlags_NoTickLabels)) {
986-
char buffer[8];
986+
char buffer[16];
987987
float fi = 0.01f * (i+1);
988988
sprintf(buffer, "data%d", i);
989989
if (i == 0)

0 commit comments

Comments
 (0)