Keisial <keis...@gmail.com> writes:

> That scss file contains several entries like:
> background-image:url(  );
> background-image:url();

I have applied the following patch.  It should fix the issue reported.

Cheers,
Giuseppe



=== modified file 'src/css-url.c'
--- src/css-url.c       2010-07-29 23:00:26 +0000
+++ src/css-url.c       2010-08-06 13:51:52 +0000
@@ -124,9 +124,11 @@
   /* skip leading space */
   while (isspace (at[*pos]))
     {
-    (*pos)++;
-    (*length)--;
+      (*pos)++;
+      if (--(*length) == 0)
+        return NULL;
     }
+
   /* skip trailing space */
   while (isspace (at[*pos + *length - 1]))
     {

Reply via email to