diff options
author | NotZed <NotZed@HelixCode.com> | 2000-05-05 16:47:02 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-05-05 16:47:02 +0800 |
commit | aa7851f1f03b4dbcf5b464b535ae71c50536f430 (patch) | |
tree | cc463f8ae82075b753c4ac93f246c3b7db372771 /camel/camel-mime-utils.c | |
parent | 022c7ab1f28ac677a60cbffa54be28e3272f1c2d (diff) | |
download | gsoc2013-evolution-aa7851f1f03b4dbcf5b464b535ae71c50536f430.tar gsoc2013-evolution-aa7851f1f03b4dbcf5b464b535ae71c50536f430.tar.gz gsoc2013-evolution-aa7851f1f03b4dbcf5b464b535ae71c50536f430.tar.bz2 gsoc2013-evolution-aa7851f1f03b4dbcf5b464b535ae71c50536f430.tar.lz gsoc2013-evolution-aa7851f1f03b4dbcf5b464b535ae71c50536f430.tar.xz gsoc2013-evolution-aa7851f1f03b4dbcf5b464b535ae71c50536f430.tar.zst gsoc2013-evolution-aa7851f1f03b4dbcf5b464b535ae71c50536f430.zip |
And same here ...
2000-05-05 NotZed <NotZed@HelixCode.com>
* camel-folder-summary.c: And same here ...
* camel-mime-utils.c: Defined out some memory profiling stuff I
left there by mistake.
* camel-mime-parser.c (folder_scan_content): Apply the fix from
the header scanner to here too.
(folder_scan_header): Only check for end of header if we have
space for it (didn't end the read with a newline)
(folder_scan_header): inptr is the only real thing we need
registerised for performance. Try to help the compiler be smart
about it ..
(folder_scan_header): Simplified the save header case a tad.
Commented out some memory profiling stuff.
svn path=/trunk/; revision=2811
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r-- | camel/camel-mime-utils.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index 5eb26a6385..22b252116b 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -38,6 +38,7 @@ #include "camel-mime-utils.h" +#if 0 int strdup_count = 0; int malloc_count = 0; int free_count = 0; @@ -45,9 +46,10 @@ int free_count = 0; #define g_strdup(x) (strdup_count++, g_strdup(x)) #define g_malloc(x) (malloc_count++, g_malloc(x)) #define g_free(x) (free_count++, g_free(x)) +#endif /* for all warnings ... */ -#define w(x) +#define w(x) x #define d(x) #define d2(x) |