Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

python-ext4fs

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

python-ext4fs - npm Package Compare versions

Comparing version
0.1a15
to
0.1a16
+1
-0
c/ext4_utils/allocate.c

@@ -624,2 +624,3 @@ /*

reg = reg->next;
list->iter = reg;
}

@@ -626,0 +627,0 @@

@@ -122,3 +122,3 @@ /*

aux_info.blocks_per_dind = aux_info.blocks_per_ind * aux_info.blocks_per_ind;
aux_info.blocks_per_tind = aux_info.blocks_per_dind * aux_info.blocks_per_dind;
aux_info.blocks_per_tind = aux_info.blocks_per_ind * aux_info.blocks_per_ind * aux_info.blocks_per_ind;

@@ -307,5 +307,12 @@ aux_info.bg_desc_blocks =

u8 *journal_data = inode_allocate_data_extents(inode,
u8 *journal_data = NULL;
if (info.feat_incompat & EXT4_FEATURE_INCOMPAT_EXTENTS) {
journal_data = inode_allocate_data_extents(inode,
info.journal_blocks * info.block_size,
info.journal_blocks * info.block_size);
} else {
journal_data = inode_allocate_data_indirect(inode,
info.journal_blocks * info.block_size,
info.journal_blocks * info.block_size);
}
if (!journal_data) {

@@ -312,0 +319,0 @@ error("failed to allocate extents for journal data");

+0
-10

@@ -257,7 +257,2 @@ /*

if (advance_blocks(alloc, len)) {
error("failed to advance %d blocks", len);
return -1;
}
*block_len -= len;

@@ -289,7 +284,2 @@ return 0;

if (advance_blocks(alloc, len)) {
error("failed to advance %d blocks", len);
return -1;
}
*block_len -= len;

@@ -296,0 +286,0 @@ return 0;

Metadata-Version: 1.1
Name: python-ext4fs
Version: 0.1a15
Version: 0.1a16
Summary: Some android tools

@@ -5,0 +5,0 @@ Home-page: UNKNOWN

Metadata-Version: 1.1
Name: python-ext4fs
Version: 0.1a15
Version: 0.1a16
Summary: Some android tools

@@ -5,0 +5,0 @@ Home-page: UNKNOWN

@@ -19,3 +19,3 @@ from __future__ import print_function

packages= find_packages(),
version="0.1a15",
version="0.1a16",
license='GPLv3 License',

@@ -22,0 +22,0 @@ author='Tarek Galal',