Mercurial > pidgin.yaz
view libgaim/protocols/gg/Makefile.am @ 15298:f08b43af6791
[gaim-migrate @ 18088]
We've seen a crash in which a NULL circbuffer was passed to gaim_circ_buffer_append() from flap_connection_send_byte_stream().
(flap_connection_send_byte_stream() was somehow called after flap_connection_close() - perhaps a result of the rate limiting queuing code?)
In any case, circbuffer should use g_return_if_fail() and g_return_val_if_fail() to throw warnings in this condition rather than crashing on a NULL pointer access. Added such checks at the top of the relevant functions.
committer: Tailor Script <tailor@pidgin.im>
author | Evan Schoenberg <evan.s@dreskin.net> |
---|---|
date | Mon, 08 Jan 2007 15:01:06 +0000 |
parents | 69590c55c748 |
children |
line wrap: on
line source
EXTRA_DIST = \ Makefile.mingw \ lib/common.c \ lib/compat.h \ lib/COPYING \ lib/dcc.c \ lib/events.c \ lib/http.c \ lib/libgadu.c \ lib/libgadu-config.h \ lib/libgadu.h \ lib/obsolete.c \ lib/pubdir50.c \ lib/pubdir.c pkgdir = $(libdir)/gaim if USE_INTERNAL_LIBGADU INTGGSOURCES = \ lib/common.c \ lib/compat.h \ lib/dcc.c \ lib/events.c \ lib/http.c \ lib/libgadu.c \ lib/libgadu-config.h \ lib/libgadu.h \ lib/obsolete.c \ lib/pubdir50.c \ lib/pubdir.c INTGG_CFLAGS = -I$(top_srcdir)/libgaim/protocols/gg/lib endif GGSOURCES = \ $(INTGGSOURCES) \ gg-utils.h \ gg-utils.c \ confer.h \ confer.c \ search.h \ search.c \ buddylist.h \ buddylist.c \ gg.h \ gg.c AM_CFLAGS = $(st) libgg_la_LDFLAGS = -module -avoid-version if STATIC_GG st = -DGAIM_STATIC_PRPL $(GADU_CFLAGS) noinst_LIBRARIES = libgg.a pkg_LTLIBRARIES = libgg_a_SOURCES = $(GGSOURCES) libgg_a_CFLAGS = $(AM_CFLAGS) libgg_a_LIBADD = $(GADU_LIBS) else st = $(GADU_CFLAGS) pkg_LTLIBRARIES = libgg.la noinst_LIBRARIES = libgg_la_SOURCES = $(GGSOURCES) libgg_la_LIBADD = $(GLIB_LIBS) $(GADU_LIBS) endif AM_CPPFLAGS = \ -I$(top_srcdir)/libgaim \ $(INTGG_CFLAGS) \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS)