diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | test/form.cc | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -16,6 +16,7 @@ dillo-2.1 - Switched a_UIcmd_save() to take its URL from history (not location bar). - Set prefs.vw_fontname as deafult font for the UI. - Fix: recover page focus when clicking-out of a widget. + - Fixed a segfault bug in the test/ directory. Patches: place (AKA corvid) +- Switched SSL-enabled to configure.in (./configure --enable-ssl). - Standardised the installation of dpid/dpidrc with auto* tools. diff --git a/test/form.cc b/test/form.cc index 5e8e0471..b337a25b 100644 --- a/test/form.cc +++ b/test/form.cc @@ -60,7 +60,7 @@ Form::RadioButtonResourceDecorator::RadioButtonResourceDecorator this->values = new const char*[n + 1]; for(int i = 0; i < n; i++) this->values[i] = strdup (values[i]); - values[n] = 0; + this->values[n] = 0; } Form::RadioButtonResourceDecorator::~RadioButtonResourceDecorator () |