http://www.microsoft.com/technet/itshowcase/content/exchbkup.mspx
Priority:
+- Implement USB keyboard support in rescue CD.
- Remove all install temp files in Win32 PLUGINSDIR.
- Audit retention periods to make sure everything is 64 bit.
- Use E'xxx' to escape PostgreSQL strings.
Dmsg0(500, "my_postgresql_fetch_row start\n");
if (!mdb->row || mdb->row_size < mdb->num_fields) {
+ int num_fields = mdb->num_fields;
Dmsg1(500, "we have need space of %d bytes\n", sizeof(char *) * mdb->num_fields);
if (mdb->row) {
Dmsg0(500, "my_postgresql_fetch_row freeing space\n");
free(mdb->row);
}
- mdb->row = (POSTGRESQL_ROW) malloc(sizeof(char *) * mdb->num_fields);
- mdb->row_size = mdb->num_fields;
+ num_fields += 20; /* add a bit extra */
+ mdb->row = (POSTGRESQL_ROW)malloc(sizeof(char *) * num_fields);
+ mdb->row_size = num_fields;
// now reset the row_number now that we have the space allocated
mdb->row_number = 0;
#undef VERSION
#define VERSION "2.1.29"
-#define BDATE "26 July 2007"
-#define LSMDATE "26Jul07"
+#define BDATE "28 July 2007"
+#define LSMDATE "28Jul07"
#define PROG_COPYRIGHT "Copyright (C) %d-2007 Free Software Foundation Europe e.V.\n"
#define BYEAR "2007" /* year for copyright messages in progs */
Technical notes on version 2.1
General:
+28Jul07
+kes Correct seg fault in postgresql when first operation returns no
+ rows. Fixes Dirks File browser problem seg fault with bat.
25Jul07
kes Apply patch from Felix Schwarz <Felix.Schwarz@web.de> that allows
building wxconsole on Fedora 7 with wxWidgets 2.8 (it works with