platform/upstream/rpm.git
14 years agoLose the empty doxygen markers
Panu Matilainen [Tue, 22 Sep 2009 19:42:06 +0000 (22:42 +0300)]
Lose the empty doxygen markers
- nothing wrong with comments but empty comment placeholders
  are not exactly useful

14 years agoPut some consistency to python object creation
Panu Matilainen [Tue, 22 Sep 2009 18:53:21 +0000 (21:53 +0300)]
Put some consistency to python object creation
- all type object creation goes through foo_Wrap() which handle OOM
  and all type specific initialization

14 years agoMake all python object creation wrappers return PyObject pointers
Panu Matilainen [Tue, 22 Sep 2009 18:24:55 +0000 (21:24 +0300)]
Make all python object creation wrappers return PyObject pointers
- this way the only place where casts are needed are in the wrapper itself

14 years agoDont leak memory on rpm.ds iteration
Panu Matilainen [Tue, 22 Sep 2009 18:01:01 +0000 (21:01 +0300)]
Dont leak memory on rpm.ds iteration

14 years agoLose unnecessary next() methods
Panu Matilainen [Tue, 22 Sep 2009 17:50:41 +0000 (20:50 +0300)]
Lose unnecessary next() methods
- python adds next() methods for objects supporting iterators

14 years agoAll rpm-python iterators are self-iterators, just use PyObject_SelfIter
Panu Matilainen [Tue, 22 Sep 2009 17:20:07 +0000 (20:20 +0300)]
All rpm-python iterators are self-iterators, just use PyObject_SelfIter

14 years agoDont leak memory from rpm.dsSingle()
Panu Matilainen [Tue, 22 Sep 2009 16:55:34 +0000 (19:55 +0300)]
Dont leak memory from rpm.dsSingle()

14 years agoSimplify fiFromHeader()
Panu Matilainen [Tue, 22 Sep 2009 16:44:59 +0000 (19:44 +0300)]
Simplify fiFromHeader()
- just call the fi object, no need to manually redo all this stuff

14 years agoSimplify dsFromHeader()
Panu Matilainen [Tue, 22 Sep 2009 16:42:53 +0000 (19:42 +0300)]
Simplify dsFromHeader()
- just call the ds object, no need to manually redo all this stuff

14 years agoSanitize python object -> tag number exception handling
Panu Matilainen [Tue, 22 Sep 2009 16:19:02 +0000 (19:19 +0300)]
Sanitize python object -> tag number exception handling
- raise exception in tagNumFromPyObject(), not in 12 different callers
- check against RPMTAG_NOT_FOUND consistently instead of -1 and whatnot
- unknown tags are value, not key or type errors

14 years agoMove allocations out of rpmps object init method
Panu Matilainen [Tue, 22 Sep 2009 15:55:09 +0000 (18:55 +0300)]
Move allocations out of rpmps object init method
- tp_init can be called several times, allocating from there leaks memory
- tp_init gets called automatically on object creation, dont call manually
- nothing to initialize for rpmps...

14 years agoMove allocations out of rpmds object init method
Panu Matilainen [Tue, 22 Sep 2009 15:53:15 +0000 (18:53 +0300)]
Move allocations out of rpmds object init method
- tp_init can be called several times, allocating from there leaks memory
- tp_init gets called automatically on object creation, dont call manually

14 years agoMove allocations out of rpmfi object init method
Panu Matilainen [Tue, 22 Sep 2009 15:50:32 +0000 (18:50 +0300)]
Move allocations out of rpmfi object init method
- tp_init can be called several times, allocating from there leaks memory
- tp_init gets called automatically on object creation, dont call manually

14 years agoRemove useless rpmts python initialization
Panu Matilainen [Tue, 22 Sep 2009 15:22:50 +0000 (18:22 +0300)]
Remove useless rpmts python initialization

14 years agoRealize the remaining bits of direct rpmdb interface are dead too
Panu Matilainen [Tue, 22 Sep 2009 15:17:49 +0000 (18:17 +0300)]
Realize the remaining bits of direct rpmdb interface are dead too
- the code hasn't been enabled in a long long time despite being built...

14 years agoUse Py_RETURN_NONE macro for returning None everywhere
Panu Matilainen [Tue, 22 Sep 2009 14:49:53 +0000 (17:49 +0300)]
Use Py_RETURN_NONE macro for returning None everywhere

14 years agoEliminate unnecessary custom object allocation functions
Panu Matilainen [Tue, 22 Sep 2009 14:33:07 +0000 (17:33 +0300)]
Eliminate unnecessary custom object allocation functions
- these are just calling python defaults, no point at all...

14 years agoUse generic python get/set attribute functions directly where appropriate
Panu Matilainen [Tue, 22 Sep 2009 14:27:44 +0000 (17:27 +0300)]
Use generic python get/set attribute functions directly where appropriate
- no point in wrapping all this stuff in our own functions

14 years agoPython initialization spring clean
Panu Matilainen [Tue, 22 Sep 2009 14:12:22 +0000 (17:12 +0300)]
Python initialization spring clean
- split rpmtag enum additions to seprate function
- PyModule_AddIntConstant() does exactly what we need for the rest

14 years agoMake the python object structures opaque
Panu Matilainen [Tue, 22 Sep 2009 13:47:07 +0000 (16:47 +0300)]
Make the python object structures opaque

14 years agoLose the utterly broken rpmio FD_t wrappers
Panu Matilainen [Tue, 22 Sep 2009 13:39:39 +0000 (16:39 +0300)]
Lose the utterly broken rpmio FD_t wrappers

14 years agoLose the useless python debug stuff
Panu Matilainen [Tue, 22 Sep 2009 13:36:48 +0000 (16:36 +0300)]
Lose the useless python debug stuff

14 years agoWe dont support ancient python versions...
Panu Matilainen [Tue, 22 Sep 2009 13:28:58 +0000 (16:28 +0300)]
We dont support ancient python versions...

14 years agoKick out mummified rpmdb python interface remnants
Panu Matilainen [Tue, 22 Sep 2009 13:24:32 +0000 (16:24 +0300)]
Kick out mummified rpmdb python interface remnants

14 years agoMissing <string.h> include
Panu Matilainen [Tue, 22 Sep 2009 13:02:39 +0000 (16:02 +0300)]
Missing <string.h> include

14 years agoClean up + fix bad recno erasure in python ts.addErase()
Panu Matilainen [Tue, 22 Sep 2009 12:36:11 +0000 (15:36 +0300)]
Clean up + fix bad recno erasure in python ts.addErase()
- now that we can loop over RPMDBI_PACKAGES matches, the code can
  be simplified quite a bit
- walk through the iterator always to get a reliable installed status,
  previously ts.addErase() with bad record number wouldn't raise exception

14 years agoRemove no longer necessary RPMDBI_PACKAGES special casing
Panu Matilainen [Tue, 22 Sep 2009 11:53:56 +0000 (14:53 +0300)]
Remove no longer necessary RPMDBI_PACKAGES special casing

14 years agoFix endless loop on RPMDBI_PACKAGES iteration when offset specified
Panu Matilainen [Tue, 22 Sep 2009 11:52:57 +0000 (14:52 +0300)]
Fix endless loop on RPMDBI_PACKAGES iteration when offset specified

14 years agoUnbreak --tid and --querybynumber
Panu Matilainen [Tue, 22 Sep 2009 09:32:02 +0000 (12:32 +0300)]
Unbreak --tid and --querybynumber
- broken ages ago somewhere between 4.4.x and 4.6.x by typing changes
  presumably
- C99 strtoul() can figure the base on its own, remove unnecessary work

14 years agoDB_INCOMPLETE was removed in BDB 4.1 and we dont support older versions
Panu Matilainen [Tue, 22 Sep 2009 07:21:47 +0000 (10:21 +0300)]
DB_INCOMPLETE was removed in BDB 4.1 and we dont support older versions

14 years agoRemove ancient, unused code to filter duplicates on rpmdb rebuild
Panu Matilainen [Tue, 22 Sep 2009 06:26:39 +0000 (09:26 +0300)]
Remove ancient, unused code to filter duplicates on rpmdb rebuild
- enabling this as-is would be murderous to multilib systems
- getting duplicates in the db would be a bug elsewhere

14 years agoRip out dependency caching
Panu Matilainen [Mon, 21 Sep 2009 11:36:59 +0000 (14:36 +0300)]
Rip out dependency caching
- it doesn't speed up things that much, is broken in some chroot
  scenarios and is ugly ugly hardwired BDB hackery where it doesn't belong

14 years agoMove rpmdb home creation from backends to one level higher
Panu Matilainen [Mon, 21 Sep 2009 11:04:34 +0000 (14:04 +0300)]
Move rpmdb home creation from backends to one level higher
- this is a common operation for any backends, avoid duplication
- only try to create it once instead of every index open, and if it
  doesn't exist and cant be created, error out instead of trying to continue
  in vain

14 years agoAdd an internal API for getting rpmdb home wrt chroot state, use it
Panu Matilainen [Mon, 21 Sep 2009 11:00:46 +0000 (14:00 +0300)]
Add an internal API for getting rpmdb home wrt chroot state, use it

14 years agoRemove pointless per-index api version
Panu Matilainen [Mon, 21 Sep 2009 08:59:25 +0000 (11:59 +0300)]
Remove pointless per-index api version

14 years agoDB config stuff not needed outside dbconfig.c, make them static
Panu Matilainen [Mon, 21 Sep 2009 08:36:16 +0000 (11:36 +0300)]
DB config stuff not needed outside dbconfig.c, make them static
- additionally make the popt struct const since it can...

14 years agoBDB is not optional at least currently, remove useless ifdefs
Panu Matilainen [Mon, 21 Sep 2009 08:32:43 +0000 (11:32 +0300)]
BDB is not optional at least currently, remove useless ifdefs

14 years agoRemove useless no-op "teardown" and "usecursors" config bits
Panu Matilainen [Mon, 21 Sep 2009 08:29:27 +0000 (11:29 +0300)]
Remove useless no-op "teardown" and "usecursors" config bits

14 years agoRemove BDB RPC "support"
Panu Matilainen [Mon, 21 Sep 2009 08:00:50 +0000 (11:00 +0300)]
Remove BDB RPC "support"
- it's insecure, used by nobody (its been rather broken for a long
  time) and all, but BDB 4.8.x removed RPC support from upstream so we
  cant very well support in the future even if we wanted to

14 years agoRemove XA "support" from the backend
Panu Matilainen [Mon, 21 Sep 2009 07:29:38 +0000 (10:29 +0300)]
Remove XA "support" from the backend
- it's removed from BDB 4.8.x and this has hardly ever done anything anyway

14 years agoRemove unused db/dbenv methods "documentary" from the source
Panu Matilainen [Fri, 18 Sep 2009 10:53:46 +0000 (13:53 +0300)]
Remove unused db/dbenv methods "documentary" from the source

14 years agoUse db3Free() for on sqlite backend close too
Panu Matilainen [Fri, 18 Sep 2009 10:05:49 +0000 (13:05 +0300)]
Use db3Free() for on sqlite backend close too

14 years agoAlways populate dbi->dbi_file on db3New()
Panu Matilainen [Fri, 18 Sep 2009 10:13:59 +0000 (13:13 +0300)]
Always populate dbi->dbi_file on db3New()
- Only the actual db->open() wants NULL for temporary databases, everywhere
  else we want the tag name. Handle the temporary case where it counts
  instead of complicating things everywhere for the one special case.

14 years agoMop up leftover root/home foobar
Panu Matilainen [Fri, 18 Sep 2009 08:56:05 +0000 (11:56 +0300)]
Mop up leftover root/home foobar

14 years agoPer-dbi root and home dont make sense, always use rpmdb paths
Panu Matilainen [Fri, 18 Sep 2009 08:51:21 +0000 (11:51 +0300)]
Per-dbi root and home dont make sense, always use rpmdb paths

14 years agoSigh.. when not using environment, absolute paths are required
Panu Matilainen [Fri, 18 Sep 2009 06:49:28 +0000 (09:49 +0300)]
Sigh.. when not using environment, absolute paths are required

14 years agoAlways open database files relative to database home
Panu Matilainen [Thu, 17 Sep 2009 13:28:09 +0000 (16:28 +0300)]
Always open database files relative to database home
- This allows the db to move freely wherever (such as across chroots,
  RhBug:507309 and pile of related issues) .. and is even recommended
  by BDB documentation. Well duh.

14 years agoEXIT_FAILURE being defined is already handled in system.h
Panu Matilainen [Thu, 17 Sep 2009 09:51:28 +0000 (12:51 +0300)]
EXIT_FAILURE being defined is already handled in system.h

14 years agoCompare pointers against NULL, not 0
Panu Matilainen [Thu, 17 Sep 2009 09:40:29 +0000 (12:40 +0300)]
Compare pointers against NULL, not 0

14 years agoHave BDB use our allocation routines now that we can
Panu Matilainen [Thu, 17 Sep 2009 09:25:31 +0000 (12:25 +0300)]
Have BDB use our allocation routines now that we can
- rfree() prototype doesn't match free() but it doesn't matter in this
  case as it's just a convencience wrapper with no extra functionality
  and setting NULL is ok according to BDB docs
- db->set_alloc() can't be used if environment is used, fix the condition

14 years agoAdd runtime settable custom memory allocation failure callback routine
Panu Matilainen [Thu, 17 Sep 2009 08:36:10 +0000 (11:36 +0300)]
Add runtime settable custom memory allocation failure callback routine
- lets API users perform theirn own cleanup / exit through their own
  routines in case of allocation failure, or even try to free up
  some memory and retry allocation

14 years agoAlways use build + use our own allocator functions
Panu Matilainen [Wed, 16 Sep 2009 14:28:22 +0000 (17:28 +0300)]
Always use build + use our own allocator functions
- Consistent across platforms and will allow some things macros dont and
  memory checkers these days are smart enough to get decent output anyway
- Minimal namespacing with r-prefix, add compatibility macros to system.h
  for now so we dont have to change the entire codebase for this
- Also make rpmutil.h where the declarations and gcc __attribute__ macros
  are available everywhere

14 years agoEliminate unnecessary variable
Panu Matilainen [Wed, 16 Sep 2009 13:18:06 +0000 (16:18 +0300)]
Eliminate unnecessary variable

14 years agoRemove unused local variable
Florian Festi [Wed, 16 Sep 2009 12:59:48 +0000 (14:59 +0200)]
Remove unused local variable

14 years agoRemove db environment on close on chrooted operations
Panu Matilainen [Wed, 16 Sep 2009 12:36:44 +0000 (15:36 +0300)]
Remove db environment on close on chrooted operations
- As we open the db from outside the chroot, the environment ends up
  containing paths that are not valid once we enter the chroot causing
  dumb issues like RhBug:513699 and RhBug:507309.
- We'd be better off removing the environment always after access but
  limiting to chroots for now as the rpmdb open/close path is full of races
  when environment is not present. Chroots are somewhat special environemnts
  anyway and typically not concurrently accessed so it's less of an issue
  there.
- While this still has all sorts of issues, it at least leaves the rpmdb
  in chroot in a functional state after initial install.

14 years agoMove the default transaction lock out of BDB environment namespace
Panu Matilainen [Wed, 16 Sep 2009 12:12:28 +0000 (15:12 +0300)]
Move the default transaction lock out of BDB environment namespace
- We dont want the transaction lock to get mixed with the BDB environment,
  nor do we want it wiped out with it as the ts lock protects things
  *around* the environment. Unlike the environment, any fcntl locks on
  the file get released when process dies, so if there is a lock,
  there's a process alive holding it and you'd better not remove it.
- Use the same lock path in macro configuration and built-in fallback
- Make it a hidden file to avoid people confusing lock file existence
  with it actually being locked

14 years agoThere's a function to test string equivalence...
Panu Matilainen [Wed, 16 Sep 2009 11:08:28 +0000 (14:08 +0300)]
There's a function to test string equivalence...

14 years agoThrow out useless db statistics structs
Panu Matilainen [Wed, 16 Sep 2009 11:00:54 +0000 (14:00 +0300)]
Throw out useless db statistics structs
- besides being completely unused, these structs are defined by BDB
  public headers, no need to mirror them in rpm

14 years agoThrow out pile of unused "stuff" from 2002
Panu Matilainen [Wed, 16 Sep 2009 10:57:01 +0000 (13:57 +0300)]
Throw out pile of unused "stuff" from 2002

14 years agoMinor cleanup to newRpmdb()
Panu Matilainen [Wed, 16 Sep 2009 09:41:44 +0000 (12:41 +0300)]
Minor cleanup to newRpmdb()
- no need to free what hasn't been allocated yet

14 years agoOne complicated way to write xstrdup() .. pff
Panu Matilainen [Wed, 16 Sep 2009 09:27:12 +0000 (12:27 +0300)]
One complicated way to write xstrdup() .. pff
- sqlite backend uses dbi subfile for table name, leave it alone although
  it is the same as the file name...
- allocate + free both file and table name separately

14 years agoEliminate long since unused db subfile from bdb code
Panu Matilainen [Wed, 16 Sep 2009 09:08:58 +0000 (12:08 +0300)]
Eliminate long since unused db subfile from bdb code

14 years agoRemove unnecessary arguments to db init and fini
Panu Matilainen [Wed, 16 Sep 2009 08:56:12 +0000 (11:56 +0300)]
Remove unnecessary arguments to db init and fini
- bdb environments are per db_home, not per file so dbfile etc dont make
  sense here

14 years agoAlso skip to be erased files in "netsharedpath"
Florian Festi [Mon, 14 Sep 2009 14:19:33 +0000 (16:19 +0200)]
Also skip to be erased files in "netsharedpath"
fixes rhbz#494640

14 years agoInitialize rpm earlier in rpm2cpio (RhBug:523260)
Panu Matilainen [Tue, 15 Sep 2009 09:57:51 +0000 (12:57 +0300)]
Initialize rpm earlier in rpm2cpio (RhBug:523260)
- url retrieval requires macros to be loaded

14 years agoTake non-gi errors into account too (SuseBug:527191)
Panu Matilainen [Tue, 15 Sep 2009 08:05:27 +0000 (11:05 +0300)]
Take non-gi errors into account too (SuseBug:527191)
- patch from OpenSUSE / Michael Schroeder

14 years agoAllow absolute paths in file lists again (SuseBug:535594, RhBug:521760)
Panu Matilainen [Tue, 15 Sep 2009 07:56:58 +0000 (10:56 +0300)]
Allow absolute paths in file lists again (SuseBug:535594, RhBug:521760)
- patch from OpenSUSE / Michael Schroeder
- build-time generated file lists should be placed in the build directory,
  but at least one valid use case for this is things like %files -f %{SOURCE10}

14 years agofind-debuginfo.sh: use permissions 444 for all .debug files
Roland McGrath [Wed, 9 Sep 2009 18:07:10 +0000 (11:07 -0700)]
find-debuginfo.sh: use permissions 444 for all .debug files

Signed-off-by: Roland McGrath <roland@redhat.com>
14 years agoDon't add dependency type into file requires and provides (RhBug:523282)
Panu Matilainen [Tue, 15 Sep 2009 05:45:14 +0000 (08:45 +0300)]
Don't add dependency type into file requires and provides (RhBug:523282)
- unintended change in commit 3d8656f040d2c780c88d0cd63594898f0605a6fa

14 years agoClean up rpmalAllFileSatisfiesDepend() a bit
Panu Matilainen [Mon, 14 Sep 2009 10:23:34 +0000 (13:23 +0300)]
Clean up rpmalAllFileSatisfiesDepend() a bit
- avoid multiple strrchr() calls
- avoid _constfree(), the string size is known from strrchr() so we dont
  need to allocate on heap at all

14 years agoSingle point of exit for doSetupMacro() to clean up freeing allocations
Panu Matilainen [Mon, 14 Sep 2009 06:48:49 +0000 (09:48 +0300)]
Single point of exit for doSetupMacro() to clean up freeing allocations

14 years agoOops, accessing the wrong header in processBinaryFiles()
Panu Matilainen [Thu, 10 Sep 2009 14:16:12 +0000 (17:16 +0300)]
Oops, accessing the wrong header in processBinaryFiles()
- dumb mistakes from commit 4177fdffd6e7414123062e8716afb22596608531

14 years agoRip the broken asynchronous psm machinery
Panu Matilainen [Thu, 10 Sep 2009 12:03:13 +0000 (15:03 +0300)]
Rip the broken asynchronous psm machinery
- it was only "used" for the ldconfig optimization and actually been
  completely broken since the ordering rewrite

14 years agoRip the broken ldconfig optimization hack (RhBug:513224)
Panu Matilainen [Thu, 10 Sep 2009 12:02:36 +0000 (15:02 +0300)]
Rip the broken ldconfig optimization hack (RhBug:513224)
- it doesn't optimize much and what's worse, it sometimes optimizes out
  calls that would've been necessary

14 years agoRip unnecessary headerDump() and the last ancient artifacts using it
Panu Matilainen [Thu, 10 Sep 2009 11:14:49 +0000 (14:14 +0300)]
Rip unnecessary headerDump() and the last ancient artifacts using it
- xml format dump gives an output that can actually be further processed

14 years agoRip unused and useless headerGetLangs()
Panu Matilainen [Thu, 10 Sep 2009 11:05:08 +0000 (14:05 +0300)]
Rip unused and useless headerGetLangs()
- nothing in the world uses it and the info is available through
  regular headerGet() anyway

14 years agoRip unused and useless headerUsageCount()
Panu Matilainen [Thu, 10 Sep 2009 11:04:18 +0000 (14:04 +0300)]
Rip unused and useless headerUsageCount()

14 years agoEliminate unused goo from findEntry()
Panu Matilainen [Wed, 9 Sep 2009 11:19:20 +0000 (14:19 +0300)]
Eliminate unused goo from findEntry()

14 years agoHandle NULL header in doHeaderUnload()
Panu Matilainen [Wed, 9 Sep 2009 09:17:10 +0000 (12:17 +0300)]
Handle NULL header in doHeaderUnload()
- avoids having to separately check elsewhere and avoids segfaulting
  on headerUnload() and headerReload() on NULL headers

14 years agoEliminate pointless increment
Panu Matilainen [Wed, 9 Sep 2009 08:52:47 +0000 (11:52 +0300)]
Eliminate pointless increment

14 years agoEliminate yet more unused calculations from header code...
Panu Matilainen [Wed, 9 Sep 2009 08:47:59 +0000 (11:47 +0300)]
Eliminate yet more unused calculations from header code...

14 years agoEliminate unused pad calculations from header code
Panu Matilainen [Wed, 9 Sep 2009 08:42:18 +0000 (11:42 +0300)]
Eliminate unused pad calculations from header code

14 years agoEliminate yet another unused variable in header code
Panu Matilainen [Wed, 9 Sep 2009 08:38:28 +0000 (11:38 +0300)]
Eliminate yet another unused variable in header code

14 years agoEliminate last remaining leftovers from "8/98 bug" workaround
Panu Matilainen [Wed, 9 Sep 2009 08:10:41 +0000 (11:10 +0300)]
Eliminate last remaining leftovers from "8/98 bug" workaround
- the ieprev calculations aren't used for anything, should've been in
  commit 4d0d54492c7d539cc806ca9e7fa59e919c28e45d really

14 years agoEliminate unnecessary variable & related goo from regionSwab()
Panu Matilainen [Wed, 9 Sep 2009 08:06:45 +0000 (11:06 +0300)]
Eliminate unnecessary variable & related goo from regionSwab()

14 years agoInitialize diff on declaration where it fits comfortably on one line
Panu Matilainen [Tue, 8 Sep 2009 11:11:59 +0000 (14:11 +0300)]
Initialize diff on declaration where it fits comfortably on one line

14 years agoMove variable to block local scope, not needed elsewhere
Panu Matilainen [Tue, 8 Sep 2009 11:10:34 +0000 (14:10 +0300)]
Move variable to block local scope, not needed elsewhere

14 years agoRemove unnecessary assignment, diff is block local scope here
Panu Matilainen [Tue, 8 Sep 2009 11:07:52 +0000 (14:07 +0300)]
Remove unnecessary assignment, diff is block local scope here

14 years agoReduce the number of exit points in parseFormat() to error and ok cases
Panu Matilainen [Tue, 8 Sep 2009 11:05:16 +0000 (14:05 +0300)]
Reduce the number of exit points in parseFormat() to error and ok cases
- avoid a dozen redundant freeFormat() calls and dont bother NULLing
  local variable at the end

14 years agoAdd -Wempty-body to default options if gcc supports it
Panu Matilainen [Mon, 7 Sep 2009 15:41:32 +0000 (18:41 +0300)]
Add -Wempty-body to default options if gcc supports it
- ...to help protect against screwups like
  2ee45ef12aaa958b78c56b6d83bb18aa6a477d15

14 years agoEliminate unused variable
Panu Matilainen [Mon, 7 Sep 2009 14:50:43 +0000 (17:50 +0300)]
Eliminate unused variable

14 years agoEliminate unused variable
Panu Matilainen [Mon, 7 Sep 2009 14:39:39 +0000 (17:39 +0300)]
Eliminate unused variable

14 years agoMinor rpmfcGenerateDependsHelper() cleanups
Panu Matilainen [Mon, 7 Sep 2009 14:10:12 +0000 (17:10 +0300)]
Minor rpmfcGenerateDependsHelper() cleanups
- initialize at declaration time, remove unnecessary variables etc

14 years agoMove rl to the scope where its needed, dont bother assigning NULL
Panu Matilainen [Mon, 7 Sep 2009 14:00:49 +0000 (17:00 +0300)]
Move rl to the scope where its needed, dont bother assigning NULL

14 years agoSingle point of exit for doPatch() to clean up freeing
Panu Matilainen [Mon, 7 Sep 2009 13:59:01 +0000 (16:59 +0300)]
Single point of exit for doPatch() to clean up freeing

14 years agoEliminate bogus variable initialization
Panu Matilainen [Mon, 7 Sep 2009 13:39:40 +0000 (16:39 +0300)]
Eliminate bogus variable initialization
- i isn't used outside the loop at the end, move it there...

14 years agoAdd noreturn annotations to javadeps
Panu Matilainen [Mon, 7 Sep 2009 13:34:20 +0000 (16:34 +0300)]
Add noreturn annotations to javadeps

14 years agoHelp compilers/analyzers a bit with luaL_error()
Panu Matilainen [Mon, 7 Sep 2009 13:23:32 +0000 (16:23 +0300)]
Help compilers/analyzers a bit with luaL_error()
- luaL_error() never returns but as other tools dont know this it
  raises false alarms

14 years agoAdd noreturn annotations to argerror() helper functions
Panu Matilainen [Mon, 7 Sep 2009 12:52:36 +0000 (15:52 +0300)]
Add noreturn annotations to argerror() helper functions

14 years agoAdd noreturn annotation to die() .. which itself should die
Panu Matilainen [Mon, 7 Sep 2009 12:07:12 +0000 (15:07 +0300)]
Add noreturn annotation to die() .. which itself should die