Below is the list of changes that have just been committed into a local
5.1 repository of mysqldev. When mysqldev does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet@stripped, 2007-09-07 13:27:52+02:00, kent@stripped +2 -0
azio.c, azlib.h:
Don't use typedef 'voidpc' as later addition and not needed
storage/archive/azio.c@stripped, 2007-09-07 13:27:02+02:00, kent@stripped +1 -1
Don't use typedef 'voidpc' as later addition and not needed
storage/archive/azlib.h@stripped, 2007-09-07 13:26:49+02:00, kent@stripped +1 -1
Don't use typedef 'voidpc' as later addition and not needed
diff -Nrup a/storage/archive/azio.c b/storage/archive/azio.c
--- a/storage/archive/azio.c 2007-08-13 15:11:15 +02:00
+++ b/storage/archive/azio.c 2007-09-07 13:27:02 +02:00
@@ -510,7 +510,7 @@ unsigned int ZEXPORT azread ( azio_strea
Writes the given number of uncompressed bytes into the compressed file.
azwrite returns the number of bytes actually written (0 in case of error).
*/
-unsigned int azwrite (azio_stream *s, voidpc buf, unsigned int len)
+unsigned int azwrite (azio_stream *s, const voidp buf, unsigned int len)
{
s->stream.next_in = (Bytef*)buf;
s->stream.avail_in = len;
diff -Nrup a/storage/archive/azlib.h b/storage/archive/azlib.h
--- a/storage/archive/azlib.h 2007-03-24 02:51:53 +01:00
+++ b/storage/archive/azlib.h 2007-09-07 13:26:49 +02:00
@@ -273,7 +273,7 @@ extern unsigned int azread ( azio_stream
gzread returns the number of uncompressed bytes actually read (0 for
end of file, -1 for error). */
-extern unsigned int azwrite (azio_stream *s, voidpc buf, unsigned int len);
+extern unsigned int azwrite (azio_stream *s, const voidp buf, unsigned int len);
/*
Writes the given number of uncompressed bytes into the compressed file.
azwrite returns the number of uncompressed bytes actually written
| Thread |
|---|
| • bk commit into 5.1 tree (kent:1.2597) | kent | 7 Sep |