summaryrefslogtreecommitdiff
path: root/framebuffer
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-04-30 07:00:58 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-04-30 07:00:58 +0000
commit000e6ad3dea9fe04759c7d27ea9ae500eccdc4bc (patch)
treea8afaa98c8beab93ea2d383fba9b01ed6821946e /framebuffer
parentb579b0deb39c067f19bebcb4acfb29d7ef87f258 (diff)
downloadnetsurf-000e6ad3dea9fe04759c7d27ea9ae500eccdc4bc.tar.gz
netsurf-000e6ad3dea9fe04759c7d27ea9ae500eccdc4bc.tar.bz2
It turns out that realloc(ptr, 0) --> free(ptr) is not actually required by the C standard (whereas realloc(NULL, size) --> malloc(size) is).
Therefore, explicitly model the behaviour expected by our libraries (that realloc of 0 size is equivalent to free). svn path=/trunk/netsurf/; revision=10524
Diffstat (limited to 'framebuffer')
-rw-r--r--framebuffer/gui.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/framebuffer/gui.c b/framebuffer/gui.c
index 287652d6e..10a2b329d 100644
--- a/framebuffer/gui.c
+++ b/framebuffer/gui.c
@@ -323,6 +323,11 @@ fb_browser_window_redraw(fbtk_widget_t *root, fbtk_widget_t *widget, void *pw)
static void *myrealloc(void *ptr, size_t len, void *pw)
{
+ if (len == 0) {
+ free(ptr);
+ return NULL;
+ }
+
return realloc(ptr, len);
}