X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fginetaddress.c;h=9ff0c441761592a543808ca466dd0f605831dd00;hb=627b49b39039d43a784fa9890f473d1ca8d52417;hp=24eb1c21f8fb52bdbde82304ef6062b7762dcfbd;hpb=32747def4bb4cce7cfc4f0f8ba8560392ec9ad3d;p=platform%2Fupstream%2Fglib.git diff --git a/gio/ginetaddress.c b/gio/ginetaddress.c index 24eb1c2..9ff0c44 100644 --- a/gio/ginetaddress.c +++ b/gio/ginetaddress.c @@ -13,9 +13,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. + * Public License along with this library; if not, see . * * Authors: Christian Kellner * Samuel Cormier-Iijima @@ -45,6 +43,7 @@ struct _GInetAddressPrivate /** * SECTION:ginetaddress * @short_description: An IPv4/IPv6 address + * @include: gio/gio.h * * #GInetAddress represents an IPv4 or IPv6 internet address. Use * g_resolver_lookup_by_name() or g_resolver_lookup_by_name_async() to @@ -367,7 +366,7 @@ g_inet_address_class_init (GInetAddressClass *klass) static void g_inet_address_init (GInetAddress *address) { - address->priv = g_inet_address_get_private (address); + address->priv = g_inet_address_get_instance_private (address); } /** @@ -394,6 +393,8 @@ g_inet_address_new_from_string (const gchar *string) struct in6_addr in6_addr; #endif + g_return_val_if_fail (string != NULL, NULL); + /* If this GInetAddress is the first networking-related object to be * created, then we won't have called g_networking_init() yet at * this point.