]> err.no Git - dpkg/commitdiff
dpkg-query: Use VARBUF_INIT to initialize path instead of vb
authorGuillem Jover <guillem@debian.org>
Mon, 9 Jun 2008 02:36:05 +0000 (05:36 +0300)
committerGuillem Jover <guillem@debian.org>
Mon, 9 Jun 2008 02:36:32 +0000 (05:36 +0300)
Thinko introduced in eb483c17ebb9a47c8b99b4319e682ab685213090.

ChangeLog
src/query.c

index 01a9675a6652543efe889ef248f0506a404c8c77..fd000d02d9406eb9b3fec3c4d7ef41014fe07dae 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-06-09  Guillem Jover  <guillem@debian.org>
+
+       * src/query.c (searchfiles): Use VARBUF_INIT to initialize path
+       instead of vb.
+
 2008-06-04  Guillem Jover  <guillem@debian.org>
 
        * src/main.c (setpipe): Set file descriptors to close on exec.
index 9ab3e09871ee57f163c59318d835c82c19fab9a9..9174ca32b961c69a27e99c0043af5da68bf99931 100644 (file)
@@ -245,8 +245,8 @@ void searchfiles(const char *const *argv) {
   struct fileiterator *it;
   const char *thisarg;
   int found;
-  struct varbuf path;
-  static struct varbuf vb = VARBUF_INIT;
+  struct varbuf path = VARBUF_INIT;
+  static struct varbuf vb;
   
   if (!*argv)
     badusage(_("--search needs at least one file name pattern argument"));