Changeset 70056 in webkit


Ignore:
Timestamp:
Oct 19, 2010 7:37:03 AM (14 years ago)
Author:
Philippe Normand
Message:

2010-10-19 Philippe Normand <pnormand@igalia.com>

Reviewed by Xan Lopez.

[GTK] Soup cache code still has some warnings
https://bugs.webkit.org/show_bug.cgi?id=47733

Fixed some compilation warnings happening with gcc 4.4.5 on
64-bits architecture.

  • platform/network/soup/cache/webkit/soup-cache.c: (webkit_soup_cache_entry_set_freshness): (close_ready_cb):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r70054 r70056  
     12010-10-19  Philippe Normand  <pnormand@igalia.com>
     2
     3        Reviewed by Xan Lopez.
     4
     5        [GTK] Soup cache code still has some warnings
     6        https://bugs.webkit.org/show_bug.cgi?id=47733
     7
     8        Fixed some compilation warnings happening with gcc 4.4.5 on
     9        64-bits architecture.
     10
     11        * platform/network/soup/cache/webkit/soup-cache.c:
     12        (webkit_soup_cache_entry_set_freshness):
     13        (close_ready_cb):
     14
    1152010-10-19  Yury Semikhatsky  <yurys@chromium.org>
    216
  • trunk/WebCore/platform/network/soup/cache/webkit/soup-cache.c

    r69858 r70056  
    298298
    299299                /* Should we re-validate the entry when it goes stale */
    300                 entry->must_revalidate = (gboolean)g_hash_table_lookup (hash, "must-revalidate");
     300                entry->must_revalidate = g_hash_table_lookup_extended (hash, "must-revalidate", NULL, NULL);
    301301
    302302                /* Section 2.3.1 */
     
    510510                entry = NULL;
    511511        } else if ((soup_message_headers_get_encoding (entry->headers) == SOUP_ENCODING_CHUNKED) ||
    512                    entry->length != content_length) {
     512                   entry->length != (gsize) content_length) {
    513513                /** Two options here:
    514514                 *
Note: See TracChangeset for help on using the changeset viewer.