~ubuntu-branches/debian/squeeze/librsvg/squeeze

« back to all changes in this revision

Viewing changes to rsvg-base.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2006-04-04 22:10:09 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20060404221009-4mw2ndnf06bs257d
Tags: 2.14.3-1
* Sync with Debian
* New upstream version
* debian/rules:
  - shlibs update

Show diffs side-by-side

added added

removed removed

Lines of Context:
569
569
                                        ctx->priv->handler = NULL;
570
570
                                }
571
571
 
572
 
                        if (!strcmp ((char *)name, ctx->priv->currentnode->type->str))
 
572
                        if (ctx->priv->currentnode && !strcmp ((char *)name, ctx->priv->currentnode->type->str))
573
573
                                rsvg_pop_def_group(ctx);
574
574
                        
575
575
                }
726
726
 * @handle: A #RsvgHandle
727
727
 * @base_uri: The base uri
728
728
 *
729
 
 * Set the base URI for this SVG
 
729
 * Set the base URI for this SVG. This can only be called before rsvg_handle_write()
 
730
 * has been called.
730
731
 *
731
 
 * Since: 2.9 (really present in 2.8 as well)
 
732
 * Since: 2.9
732
733
 */
733
734
void rsvg_handle_set_base_uri (RsvgHandle *handle,
734
735
                                                           const char *base_uri)