diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2018-05-22 09:34:13 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2018-05-22 09:34:13 +0000 |
| commit | 4c65d976e4a7eab9a881735c70c416eafc28f538 (patch) | |
| tree | 469faf0c439f941d32a569643686fbe82046b78c | |
| parent | 396e4f41cf9f511fd3505915e4b4ceb8c33e0349 (diff) | |
Fl_Tabs: fix allocation of tab_width[] (STR #3472).
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12925 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | src/Fl_Tabs.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl_Tabs.cxx b/src/Fl_Tabs.cxx index 85f8d10a7..353dc49a1 100644 --- a/src/Fl_Tabs.cxx +++ b/src/Fl_Tabs.cxx @@ -3,7 +3,7 @@ // // Tab widget for the Fast Light Tool Kit (FLTK). // -// Copyright 1998-2016 by Bill Spitzak and others. +// Copyright 1998-2018 by Bill Spitzak and others. // // This library is free software. Distribution and use rights are outlined in // the file "COPYING" which should have been included with this file. If this @@ -46,7 +46,7 @@ int Fl_Tabs::tab_positions() { clear_tab_positions(); if (nc) { tab_pos = (int*)malloc((nc+1)*sizeof(int)); - tab_width = (int*)malloc((nc+1)*sizeof(int)); + tab_width = (int*)malloc((nc)*sizeof(int)); } tab_count = nc; } |
