Skip to content

Commits

Permalink
iso
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Jan 31, 2012

  1. Copy the full SHA
    2826c78 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2012

  1. [iso] minor fixes for MSVC

    pbatard committed Jan 30, 2012
    Copy the full SHA
    31ee9f3 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    5cba494 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2012

  1. Copy the full SHA
    84729a2 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    b376bd4 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2012

  1. Copy the full SHA
    f55f31a View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2012

  1. Copy the full SHA
    ff07075 View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2012

  1. [iso] image extraction at last, for both UDF and ISO9660

    * removed the need for ftruncate and CEILING
    * revert "bad offset computation ICB" 'fix' (there never was a problem)
    * use 64bit types and calls where needed
    * minor utf8 fixes
    pbatard committed Jan 21, 2012
    Copy the full SHA
    0cca99b View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2012

  1. [udf] more file extraction fixes

    * bad offset computation ICB
    * file offset must be reset for each new file entry
    * must use 64bit fseek to access > 2 GB media
    * always use a 2048 fe block in udf_dirent to allow updates without overflow
    pbatard committed Jan 20, 2012
    Copy the full SHA
    5f737e1 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2012

  1. Copy the full SHA
    3133513 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2012

  1. [iso9660] add Joliet support (that doesn't rely on iconv)

    * also _stat64 -> _stati64
    pbatard committed Jan 18, 2012
    Copy the full SHA
    0ccc6f7 View commit details
    Browse the repository at this point in the history
  2. [iso9660] add file extraction

    pbatard committed Jan 18, 2012
    Copy the full SHA
    a9383b6 View commit details
    Browse the repository at this point in the history
  3. [iso9660] remove warnings about directory size mismatch

    * also minor improvements to iso.c
    pbatard committed Jan 18, 2012
    Copy the full SHA
    41e8ac7 View commit details
    Browse the repository at this point in the history
  4. [iso] improvements to iso recursive listing

    * ISO9660 directory recursion
    * use default log handler
    * also use warn instead of error in udf_fs.c
    pbatard committed Jan 18, 2012
    Copy the full SHA
    7fbcccd View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2012

  1. [libcdio] _stat() does not work with files > 4GB - must use _stat64

    * move internal stream sizes to 64 bit as a result
    * see http://msdn.microsoft.com/en-us/library/14h5k7ff.aspx
    pbatard committed Jan 17, 2012
    Copy the full SHA
    fcc2486 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2012

  1. Copy the full SHA
    26a131e View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    daebf4e View commit details
    Browse the repository at this point in the history
  3. [iso9660] workaround for zero sized filename array and MSVC

    * use an union of iso711_t and char (same size), and and access the string starting at index 1
    pbatard committed Jan 16, 2012
    Copy the full SHA
    4a63955 View commit details
    Browse the repository at this point in the history
  4. [iso] use same settings for EMPTY_ARRAY_SIZE in libcdio

    * also minor cleanup
    pbatard committed Jan 16, 2012
    Copy the full SHA
    b0552a9 View commit details
    Browse the repository at this point in the history
  5. [udf] workaround for udf_fs memory corruption

    * issue is due to blind memcopy that may overflow allocated udf_dirent
      structure if new LBA we read for file entry has different i_alloc_desc
      or i_extended_attr
    pbatard committed Jan 16, 2012
    Copy the full SHA
    ca437ca View commit details
    Browse the repository at this point in the history
  6. [iso] iso standalone test improvements

    * memleaks check
    * cleanup
    pbatard committed Jan 16, 2012
    Copy the full SHA
    9ba3b88 View commit details
    Browse the repository at this point in the history
  7. [udf] workaround for zero sized arrays and MSVC

    * sizeof(*(p_udf_dirent->fid) was erroneous in udf_readdir
      which prevented proper computation of ofs which prevented
      listing of directory content
    * enforce a single zero sized array only at the end of a struct
    pbatard committed Jan 16, 2012
    Copy the full SHA
    668e2d5 View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2012

  1. [iso] added standalone iso test program for debugging

    * MinGW and Visual Studio only
    pbatard committed Jan 14, 2012
    Copy the full SHA
    d122684 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    161130f View commit details
    Browse the repository at this point in the history
  3. [iso] fix Clang errors

    * Clang warnings came from assert being a regular call
    * created a new cdio_assert_log() call with __attribute__((__noreturn__))
    * see http://clang-analyzer.llvm.org/annotations.html#custom_assertions
    pbatard committed Jan 14, 2012
    Copy the full SHA
    4565531 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2012

  1. Copy the full SHA
    6bf24cb View commit details
    Browse the repository at this point in the history
  2. * [iso] add ISO support part 5 (cleanup)

    * remove unneeded headers
    pbatard committed Jan 13, 2012
    Copy the full SHA
    e4d621d View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    be9956a View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    e031c63 View commit details
    Browse the repository at this point in the history
  5. [iso] add ISO support part 2 (udf)

    * also splits filemode into header + source
    * also better handling of cdio_config.h
    pbatard committed Jan 13, 2012
    Copy the full SHA
    a7eb3d5 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2012

  1. [iso] add ISO support part 1 (iso9660)

    * uses GNU libcdio
    pbatard committed Jan 12, 2012
    Copy the full SHA
    ab109bf View commit details
    Browse the repository at this point in the history
  2. [sl] add chain.c32 module for embedding

    * also minor updates
    pbatard committed Jan 12, 2012
    Copy the full SHA
    9d2f9fa View commit details
    Browse the repository at this point in the history
  3. [sl] syslinux support (MinGW)

    * also fixes memory leak in syslinux.c
    * closes #31
    pbatard committed Jan 12, 2012
    Copy the full SHA
    b6252a9 View commit details
    Browse the repository at this point in the history
  4. [sl] syslinux support (EXPERIMENTAL)

    * MS platforms only (*BREAKS* MinGW)
    pbatard committed Jan 12, 2012
    Copy the full SHA
    acf7d07 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2012

  1. [msvc] move FreeDOS config option to a header file

    * use toplevel ms-config.h for options, rather than duplicate project files
    * applies for MSVC and WDK
    pbatard committed Jan 11, 2012
    Copy the full SHA
    130afd8 View commit details
    Browse the repository at this point in the history
Older