Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2008-04-29 | Oops, one more alloca() in rpmtsOrder() | Panu Matilainen | 1 | -1/+2 | |
2008-04-29 | Remove alloca() from rpmtsOrder() | Panu Matilainen | 1 | -4/+10 | |
2008-04-29 | Dead code elimination | Panu Matilainen | 1 | -3/+0 | |
2008-04-29 | Remove alloca() from rpmvercmp() | Panu Matilainen | 1 | -4/+2 | |
- use variable array instead, versions had better be short enough to fit on stack safely | |||||
2008-04-29 | Eliminate remaining alloca() in rpmAddSignature() | Panu Matilainen | 1 | -1/+1 | |
2008-04-29 | Plug memleaks in signature generation | Panu Matilainen | 1 | -4/+6 | |
2008-04-29 | Avoid alloca() in rpmtsSetRootDir() | Panu Matilainen | 1 | -12/+5 | |
2008-04-29 | Avoid alloca() in rpmDetectPGPVersion() | Panu Matilainen | 1 | -3/+3 | |
- the whole detection is hysterical and could/should probably be killed but what the heck... | |||||
2008-04-29 | Avoid alloca() in makeGPGSignature() | Panu Matilainen | 1 | -9/+12 | |
2008-04-29 | Avoid unchecked stpcpy() to static sized buf from alloca() | Panu Matilainen | 1 | -7/+11 | |
2008-04-29 | Avoid alloca() in rpmtsInitIterator() | Panu Matilainen | 1 | -8/+13 | |
2008-04-29 | Read "canonvendor" macros by default again | Panu Matilainen | 1 | -0/+1 | |
- the whole vendor etc stuff needs rethinking etc, but for now this "works" | |||||
2008-04-29 | Avoid alloca() in legacyRetrofit() | Panu Matilainen | 1 | -1/+2 | |
2008-04-29 | Use rpmioSlurp() for reading in rpmrc's | Panu Matilainen | 1 | -73/+43 | |
- have doReadRC() do the opening of files instead of caller - always expand rc filename on entry, simplifies includes too - streamline exit paths | |||||
2008-04-29 | Use rpmGlob() for expanding rcfiles globs | Panu Matilainen | 1 | -50/+23 | |
- avoids static filename buffer and simplifies things quite a bit | |||||
2008-04-28 | Remove unused alloca_strdup() macro | Panu Matilainen | 1 | -2/+0 | |
2008-04-28 | Remove alloca() from strntoul() helper in cpio | Panu Matilainen | 1 | -5/+2 | |
- only small (< 10 chars) buffers from struct cpioCrcPhysicalHeader are ever passed in, tmp buffer on stack is safe | |||||
2008-04-28 | Avoid alloca() in rpmGetFilesystemUsage() | Panu Matilainen | 1 | -12/+14 | |
2008-04-28 | Avoid alloca() in getFilesystemList() | Panu Matilainen | 1 | -6/+11 | |
2008-04-28 | Eliminate pointless alloca() of entryInfo and indexEntry structs | Panu Matilainen | 1 | -46/+49 | |
2008-04-28 | Eliminate pointless alloca() of local DBT structs | Panu Matilainen | 1 | -20/+20 | |
2008-04-28 | Eliminate pointless alloca() of struct fileIndexEntry struct | Panu Matilainen | 1 | -6/+6 | |
2008-04-28 | Eliminate pointless alloca() of availableIndexEntry struct. | Panu Matilainen | 1 | -7/+7 | |
2008-04-28 | Eliminate pointless alloca()'s of local dirInfo struct | Panu Matilainen | 1 | -25/+26 | |
2008-04-28 | Eliminate pointless alloca() of entryInfo and indexEntry structs | Panu Matilainen | 1 | -28/+31 | |
2008-04-25 | Replace alloca() + memset() with xcalloc() in runImmedTriggers() | Panu Matilainen | 1 | -3/+2 | |
2008-04-25 | Avoid alloca() in markReplacedFiles() | Panu Matilainen | 1 | -1/+2 | |
2008-04-25 | Reduce alloca() use in relocateFileList() | Panu Matilainen | 1 | -5/+7 | |
- dirindexes and filelists can be *huge* - filenames and such still allocated on stack, fix later... | |||||
2008-04-25 | Replace alloca() + memset() with xcalloc() in skipFiles() | Panu Matilainen | 1 | -4/+4 | |
2008-04-25 | Avoid alloca() on links in printFileInfo() | Panu Matilainen | 1 | -6/+6 | |
- also avoid unnecessary nulling of perms, no point .. | |||||
2008-04-25 | Avoid alloca() in rpmInstall() | Panu Matilainen | 1 | -1/+2 | |
2008-04-25 | Simplify setPathDefault() | Panu Matilainen | 1 | -5/+2 | |
- use rpmGetPath() to get sanitized path, avoid alloca() | |||||
2008-04-25 | Avoid alloca() in rpmteColorDS() | Panu Matilainen | 1 | -3/+4 | |
2008-04-24 | Remove outdated comment, add a todo reminder | Panu Matilainen | 1 | -4/+0 | |
- callbacks for pkgs without files have been faked for some time now.. | |||||
2008-04-24 | Remove bogus const from rpmfi pre- and posttrans members | Panu Matilainen | 2 | -8/+8 | |
- they're always duped, scaremem or not | |||||
2008-04-24 | Eliminate rpmtsi refcount debug junk from the API | Panu Matilainen | 2 | -30/+2 | |
2008-04-24 | Update doxygen docs for rpmteNEVR() and friends | Panu Matilainen | 1 | -5/+5 | |
2008-04-24 | Remove meaningless extern on function declarations in headers | Panu Matilainen | 5 | -26/+26 | |
2008-04-24 | Add rpmteEVR() function | Panu Matilainen | 3 | -4/+13 | |
- seems like a useful thing to have - use in ensureOlder() | |||||
2008-04-24 | I'm out of words for this one. | Panu Matilainen | 1 | -10/+1 | |
2008-04-24 | Check for chroot() result in rpmtsRun() | Panu Matilainen | 1 | -1/+4 | |
- bail out early if it fails instead of blindly continuing and potentially messing in real root (chroot can fail for priviledged user too) | |||||
2008-04-24 | Make verification with --root reliable (rhbz#434150) | Panu Matilainen | 1 | -21/+27 | |
- use chroot() instead of vain path manipulation games, otherwise we'll get bogus results from users and groups not matching etc - non-priviledged verification is unreliable anyway but running rpm under fakechroot (unpriviledged) gives much better results than just prepending root to paths | |||||
2008-04-24 | Force preloading of name service libraries early in initialization | Panu Matilainen | 2 | -14/+2 | |
- this used to be done in psm chroot operation, but we can end up chrooting before that and without psm being involved - don't bother with getpwnam() etc, a single gethostbyname() loads all that we need | |||||
2008-04-22 | Handle lzma payload | Jindrich Novy | 2 | -0/+5 | |
2008-04-21 | Retrofit RPMTAG_SOURCEPACKAGE to source rpms. | Panu Matilainen | 1 | -1/+2 | |
2008-04-21 | Use argvAppend() instead of manual reallocs, plug a leak from rpmGlob() | Panu Matilainen | 1 | -7/+5 | |
2008-04-21 | Use argvNew() instead of manual xcalloc() | Panu Matilainen | 1 | -1/+1 | |
2008-04-20 | Don't use static buffers | Jindrich Novy | 2 | -5/+4 | |
2008-04-18 | Put '\0' to the end of xmalloc'd string to avoid surprises | Jindrich Novy | 1 | -0/+1 | |
2008-04-17 | Eliminate splitString() and freeSplitString() | Panu Matilainen | 1 | -7/+9 | |
- use ARGV_t instead, it does the same and more... |