aboutsummaryrefslogtreecommitdiffstats
path: root/include/photo/photo_gd.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/photo/photo_gd.php')
-rw-r--r--include/photo/photo_gd.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/photo/photo_gd.php b/include/photo/photo_gd.php
index a32bd2816..466f8c23a 100644
--- a/include/photo/photo_gd.php
+++ b/include/photo/photo_gd.php
@@ -17,6 +17,9 @@ class photo_gd extends photo_driver {
function load($data, $type) {
$this->valid = false;
+ if(! $data)
+ return;
+
$this->image = @imagecreatefromstring($data);
if($this->image !== FALSE) {
$this->valid = true;