aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2008-11-28 15:17:53 -0300
committerJorge Arellano Cid <jcid@dillo.org>2008-11-28 15:17:53 -0300
commita421e30f41308a9e76421460ff44768f45842bf7 (patch)
tree0e302b606f60d2b84a90a032ed0902b6d678dfde
parenta08e75ec068c30a3ca908969f857fb4ded7f68ea (diff)
- Fixed a segfault bug in the test/ directory.
-rw-r--r--ChangeLog1
-rw-r--r--test/form.cc2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7589c70a..443d7f04 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 ()